summaryrefslogtreecommitdiffstats
path: root/chalk/doc
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/doc')
-rw-r--r--chalk/doc/DESIGN.obsolete179
-rw-r--r--chalk/doc/Developing Chalk Plugins.odtbin0 -> 50195 bytes
-rw-r--r--chalk/doc/autoextending paintdevices54
-rw-r--r--chalk/doc/background_paper.txt84
-rw-r--r--chalk/doc/brush.txt36
-rw-r--r--chalk/doc/chalk-features215
-rw-r--r--chalk/doc/chalk.kprbin0 -> 2857392 bytes
-rw-r--r--chalk/doc/chalk.pdfbin0 -> 2701147 bytes
-rw-r--r--chalk/doc/chalk.xmi56432
-rw-r--r--chalk/doc/channels_masks_selections12
-rw-r--r--chalk/doc/colordiff68
-rw-r--r--chalk/doc/colorspaces.xmi41965
-rw-r--r--chalk/doc/colorstrategyAPI58
-rw-r--r--chalk/doc/controller.xmi39776
-rw-r--r--chalk/doc/coordinates.txt9
-rw-r--r--chalk/doc/dirty.txt53
-rw-r--r--chalk/doc/doc-outline187
-rw-r--r--chalk/doc/histograms.xmi4145
-rw-r--r--chalk/doc/hooks33
-rw-r--r--chalk/doc/howtofilters.txt30
-rw-r--r--chalk/doc/impexp.txt41
-rw-r--r--chalk/doc/large_files36
-rw-r--r--chalk/doc/layersupdatesignals.flwbin0 -> 10783 bytes
-rw-r--r--chalk/doc/manual/chalk.kwdbin0 -> 2505238 bytes
-rw-r--r--chalk/doc/oasis5
-rw-r--r--chalk/doc/paint_device.txt98
-rw-r--r--chalk/doc/palettedesign.txt34
-rw-r--r--chalk/doc/plugins.txt32
-rw-r--r--chalk/doc/profiles.txt125
-rw-r--r--chalk/doc/resolution.txt40
-rw-r--r--chalk/doc/scripts/dcop.py14
-rw-r--r--chalk/doc/sdk10
-rw-r--r--chalk/doc/selections127
-rw-r--r--chalk/doc/the preview widget81
-rw-r--r--chalk/doc/transform_undo.txt38
35 files changed, 144017 insertions, 0 deletions
diff --git a/chalk/doc/DESIGN.obsolete b/chalk/doc/DESIGN.obsolete
new file mode 100644
index 000000000..51cadc587
--- /dev/null
+++ b/chalk/doc/DESIGN.obsolete
@@ -0,0 +1,179 @@
+A Perspective on Chalk's Design
+
+ Chalk's codebase has been through as many changes as the app's name
+ itself. It started with KImageShop (hence the 'kis' prefix one finds
+ everwhere, and which would have been unnessary had Chalk used
+ namespaces, one fancies), then became Krayon to end up as Chalk. The
+ stated design goal was to create a application geared towards the
+ more artistic user; the kind of user who settles down with his
+ tablet to create a spot of Art. It ended up as a Gimp-clone, a Kimp,
+ so to say.
+
+ This document was the basis for a discussion on the chalk mailinglist:
+ http://lists.kde.org/?l=kde-kimageshop&m=106530035202770&w=2. See the
+ answer for some answers to the questions at the end.
+
+Design Patterns
+
+ Patrick Julien restructured Chalk to use a lot design patterns. Chalk
+ appears to have a very solid base for blasting pixels to the screen,
+ zooming, selecting and moving. These are what I recognize as his
+ changes:
+
+ * Change brushes handling to a generic Mediator pattern
+ (kis_resource_mediator). Resources are brush tqshapes,
+ patterns (and colours, too?) Patrick intended a Flyweight
+ here.
+
+ * The composite pattern is used in paint devices, layers, channels,
+ etc. (What about tqmasks?)
+
+ * Change colourspace handling to a Strategy pattern
+ (strategy/kis_strategy_color)
+
+ * Change moving chunks of painting to a Strategy pattern
+ (strategy/kis_strategy_move)
+
+ * kis_factory points towards a Factory pattern Creates the
+ pluginserver and resourceserver.
+
+ * Tools are created by a Factory pattern (but it isn't
+ dynamic yet): kis_tool_factory. Tools are intended to
+ become kparts.
+
+ * There's the start of a Memento pattern for tools, but it
+ doesn't seem to be used (kis_tool_memento). It was an
+ experiment that didn't pan out.
+
+ * The Builder pattern is used to do conversion to and/or
+ from ImageMagick. I guess this is used for importing
+ images in other file-formats than .chalk. An idea at one
+ was to use Koffice filters, but that didn't work because
+ images are rather different from other office documents.
+
+ * Flyweight pattern used for background tiles.
+ kis_background.
+
+ * Nameserver. Perhaps not a pattern -- at least not one
+ with an obvious GOF name. Appears to be computing a
+ number for new layers and new documents.
+
+ * kis_render. Interface implemented by kis_paint_device
+ and kis_image.
+
+ * Rename kisTool to kisToolInterface -- but the file is
+ still called kis_tool. (This is intentional, and should
+ be kept in the style guide.)
+
+ * Addition of kis_types. Defines shared pointer pointers
+ to core chalk objects: image, paintdevice, channel,
+ tqmask, layer etc.
+
+ * Tile architecture. There's Mediator and a Singleton
+ pattern here at least. This stuff seems to work, doesn't
+ need hacking at the moment.
+
+ * Visitor pattern used to flatten an image or merge
+ layers. Merging exposes a funny bug where the tiles
+ are re-arranged in an interesting mosaic pattern.
+
+
+User interface
+
+ Chalk uses a fairly ugly side-panel to collect what are palettes
+ in other applications. I would prefer dockable, attachable
+ palettes myself. Doesn't KDE have a lib for that already?
+
+
+ ui/labels
+
+ These classes are used in the statusbar.
+
+ ui
+
+ The dialogs appear to be created by hand, not with Qt
+ Designer. Besides, many are inoperational.
+
+ other
+
+ The canvas, rules and sidebar panels are defined here, too,
+ nicely separated.
+
+Tools
+
+ Working: select_rectangular, test, zoom, colorpicker, paste, move
+
+ Not working: airbrush, brush, colorchanger (no idea what it should
+ do), ellipse, eraser, fill, line, pen, polygon, polyline,
+ rectangle, select_contiguous, select_elliptical, select_freehand,
+ select_polygonal, stamp
+
+ Missing tools: convolve, smear, smudge, whirl, charcoal, chalk,
+ oils, clone, select_by_colour
+
+Plugins
+
+ The single plugin example has been present in chalk since about day
+ one, as far as I can see. It doesn't show anything about what one
+ can do with plugins.
+
+ To judge from the code in kis_plugin_server, it never got beyond
+ an idea. (kdDebug() << "hallo\n"...)
+
+ (This code should be removed.)
+
+ImageMagick
+
+ There still appear to be some dependencies upon ImageMagick (builder
+ subdir). What are these for, and should they stay? Is it for
+ importing/exporting foreign file formats?
+
+Undo/Redo
+
+ Undo and Redo make use of the standard KDE mechanism, which I don't
+ really understand either.
+
+
+Obsolete files
+
+ The following files appear to be unused:
+
+ core/helper/kis_timer
+ core/helper/kis_scopedlock (Replaced with QMutexlocker)
+ core/kis_krayon (was predecessor of kis_resource)
+ core/kis_tqmask
+ core/kis_util
+ ui/kis_krayon_widget
+
+Random head-scratchings
+
+
+ - Why the QUANTUM redefinition: the number of bits per channel,
+ 8 for 32-bit colour, 16 for 64-bit colour.
+
+ - is_tqmask unimplemented? What was it meant to do, or is it an
+ interface?
+
+ - nameserver presents unique numbers for new layers and images.
+
+ - what does 'upscale' do? in 8 bit/channel color mode, upscale
+ doesn't do anything. However, downscale and upscale in > 8 bit,
+ this is needed to covert the color for the actual display
+ rendering, i.e. X, etc, only do 8 bit color. Using this
+ everywhere you work on color will keep chalk color channel
+ bit depth independent.
+
+
+ - Is KisVector only used in obsolete tools?
+
+ - I take it that the two tests that are present in chalk/test
+ are obsolete?
+
+ - what with the dummmmmy.cc?
+
+ - which bits of the chalk/ui files are still relevant?
+
+ - kis_selection.h needs to be included to compile code that
+ uses kis_paint_device, and I wonder why.
+
+ - what is paint-offset?
diff --git a/chalk/doc/Developing Chalk Plugins.odt b/chalk/doc/Developing Chalk Plugins.odt
new file mode 100644
index 000000000..1e74bff82
--- /dev/null
+++ b/chalk/doc/Developing Chalk Plugins.odt
Binary files differ
diff --git a/chalk/doc/autoextending paintdevices b/chalk/doc/autoextending paintdevices
new file mode 100644
index 000000000..a42dc6835
--- /dev/null
+++ b/chalk/doc/autoextending paintdevices
@@ -0,0 +1,54 @@
+
+This is an attempt to explain how autosizing paintdevices work
+
+The tileddatamanager which is the underlying object that organizes the pixel
+storage is autoextending. So it starts with zero tiles, and as writing is
+being done new tiles are added as needed.
+
+There is also a default tile that is only readable (in theory). Whenever
+access is only readaccess you get this tile for areas that don't have their
+own tile yet. The idea is that the default tile is filled with transparent
+pixels. (Or, with special layers like the background pattern or the selection,
+with something else relevant. bsar)
+
+
+So imagine a new image of size 640x640. The layer has no tiles, but when the
+layer is being read (for viewing) we probe all over the image (640x640) and
+read from the default tile wherever we probe.
+
+The extent of the layer (paintdevice) is 0x0 because nothing has been
+written yet.
+
+Then some drawing is done in one corner and a tile is created automatically.
+Now the extent is 64x64 (tilesize defined at compilation) because a single
+tile exists.
+
+If some drawing is done in the opposite corner another tile is created. The
+extent is now 640x640, but only two tiles exist (one in each opposite
+corner). When probing for viewing the default tile is what you get except
+for the two tiles.
+
+If we now apply a filer that lightens the colors (or something else) we
+could iterate over the extent. That way we are sure to get all the real
+tiles that have been created.
+
+As there is no way for us to know which pixel have true tiles and which have
+the default, we would write to all the pixels within the extent, which would
+automatically create ALL the tiles inside the extent.
+(XXX: Of course, the tile manager could decide that the written value
+is the same as the default value, and if that's true for all pixels in a tile,
+not create a tile at all) (bsar))
+
+In other cases like a gradient fill we would probably want to fill the
+current image area, so we we would just write to the paintdevice, and tiles
+would be automatically created for us.
+
+So in short: if you read - data will be available (either real tiles or a
+default) - and if you write to the paintdevice - tiles will be created as
+needed. So simply don't worry.
+
+But in some cases, when you want to modify already written pixels, as in
+some filters you want to know where true data have been written. Otherwise
+we would have to modify an infinite number of pixels to be sure everything is
+changed. This is where the extent comes in handy. If you have absolutely
+no leeway, use exactBounds which is slow, but sure.
diff --git a/chalk/doc/background_paper.txt b/chalk/doc/background_paper.txt
new file mode 100644
index 000000000..96226fe2f
--- /dev/null
+++ b/chalk/doc/background_paper.txt
@@ -0,0 +1,84 @@
+Background, paper, layers, blobs
+
+An image in Chalk is imposed upon a plane. Perhaps, using OpenGL,
+we'll be able to rotate and elevate that plane at the users' whim.
+If we can elevate the plane, there will be a direction of gravity
+that naturalistic media can play with. Note: Wet & Sticky make it
+possible to "paint" gravity. This looks like a fun feature, but
+that needs to be done per-layer, and not for the whole image.
+
+The plane is represented by the checkered background. Ideally,
+we'd be able to set the color of the checks & the size, and the
+size shouldn't change with the zoomlevel. The checks are one
+pattern, repeated for the whole image:
+
+O#
+#O
+
+Placed on the plane is optionally the substrate -- a naturalistic
+representation of canvas, linen, paper, board, wood, levkas. Or
+something weird, kopper, rock, sand... There is one substrate
+per image. The substrate can be a small texture repeated for the
+whole image, or as big as the image -- the latter is important
+if we want to make it possible to perturb the substrate (think scoring
+lines into levkas or erasing through the paper).
+
+Provisionally, the substrate has the following properties:
+
+height
+smoothness
+absorbency
+reflectiveness
+
+(Of course, layers below the current layer can influence these values
+for layers on top of them.)
+
+I have a hunch that the effect of these properties are really easy to
+render using OpenGL, but not so easy using plain QPainter. In any case,
+media layers will need to know these values at every pixel. We need
+a really easy & fast way to acquire them.
+
+We need to avoid the Corel Painter feature where you can use a naturalistic
+paper and then paint away the paper structure, mixing the color of the paper
+with your paint as if the paper were paint. So, we need to separate paper
+and paint thoroughly.
+
+On top of the substrate and background are the layers themselves.
+Some layers are just color; others contain media. Media means color,
+but possibly in a kubelka-munk colorspace, and properties like:
+
+height
+graininess
+viscosity
+wetness
+smoothness
+absorbency
+stickiness (i.e, charcoal isn't sticky at all, acryl paints very
+sticky)
+
+Note: Impasto models thick, 3-d paint, where tufts of thick oipaint can
+cast shadows...
+
+Ordinary color layers (Shoup layers in the terminology of Cockshott) can
+make use of the substrate parameters using special paint ops, and ordinary
+color can be painted on a media layer, but the ordinary color paintops
+do not deposit the above properties. Media paint just leaves color on the
+color layers. We need to avoid at all costs the Corel Painter effect where
+trying to use a pencil on a watercolor layer causes a nasty flow-impeding
+useless error box to popup.
+
+Media and ordinary layers can be grouped and mixed at will, together with adjustment
+layers. Adjustment layers can also be attached to selection tqmasks, per layer.
+
+The composited layers is either scaled and color corrected, or color corrected and
+then scaled, depending on whether the zoom > 100% or < 100%.
+
+Note: do we need a visualisation layer on top of the layers for things
+like wetness, reflectiveness, height? Perhaps this is the right place for that.
+We need perhaps to add a light source or two, in OpenGL mode... I think
+we do.
+
+On top of the layers are what Xara calls blobs: the temporary droppings of
+tools, like rubber bands, vector paths, brush tqshape cursors.
+
+
diff --git a/chalk/doc/brush.txt b/chalk/doc/brush.txt
new file mode 100644
index 000000000..bb932eeec
--- /dev/null
+++ b/chalk/doc/brush.txt
@@ -0,0 +1,36 @@
+Painting with brushes
+
+:.,I don't know anything, nada, zilch, noppes about writing paint applications. So
+when I started working on Chalk, I felt I needed examples. I used the following
+sources:
+
+* The old Chalk brush code (http://webcvs.kde.org/cgi-bin/cvsweb.cgi/koffice/chalk/tools/kis_tool_brush.cc?rev=1.58&content-type=text/x-cvsweb-markup)
+* Peter Jodda's Perico (http://software.jodda.de/perico.html)
+* The source of the Gimp (both current and 0.99.11 -- the oldest version I could tqfind) (http://www.gimp.org)
+* David Hodson's article on Gimp brushes (http://members.ozemail.com.au/~hodsond/gimpbrush.html)
+* Raph Levien's article on Gimp brushes (http://www.levien.com/gimp/brush-arch.html)
+
+Chalk uses the gimp's brush file formats: .gbr and .gih, for singe
+and pipeline brushes, respectively. These brushes contain one or more
+grayscale or rgba images. If the image is grayscale, the gray image is
+intended to be used as an alpha tqmask: each gray level corresponds to
+a certain alpha level, and when painting the current painting colour
+is composited in the image with this level as its alpha component. The
+image brushes should be tqmasked -- i.e., these are coloured images placed
+on a white background. The white background should be made transparent,
+and then the brush image can be composited onto our image.
+
+This is currently only half supported: I make tqmasks of everything,
+partly because I like that better, partly because until very recently
+there was no way of making out the difference between gray and rgb
+brushes because KisBrush didn't remember that bit of data.
+
+Making the initial tqmask of a brush is however by now pretty well done; the next
+problem is painting with those tqmasks.
+
+Here we have two situations, one easy, one difficult. The easy one is the single
+mouse click. If the user clicks or taps with his stylus, we can composite the
+tqmask or the image at the pixel position of the mouse click.
+
+The difficult situation is drawing a line. This line needs to be antialiased.
+
diff --git a/chalk/doc/chalk-features b/chalk/doc/chalk-features
new file mode 100644
index 000000000..77f79dcbf
--- /dev/null
+++ b/chalk/doc/chalk-features
@@ -0,0 +1,215 @@
+Chalk Features
+
+The following is a comprehensive list of all Chalk's features
+that are or will be implemented for version 1.5.
+
+* Plugins
+
+Chalk is extensible through plugins. There are tools, colorspaces,
+paint operations, filters and kpart-based user interface plugins.
+It is intended to make layer types plugins, too.
+
+* Scriptable
+
+Chalk is scriptable in Python and Ruby. The scripting is
+compatible with using the PyQt/KDE and Korundum for adding
+GUI items.
+
+* File
+
+Import: png, tiff, jpeg, dicom, xcf, psd (up to version 6,
+from version 7 on, the photoshop file format is closed and it
+is impossible to get the spec to implement support in a
+free software application), gif, raw, bmp, xpm, targa, rgb, ico,
+openEXR.
+
+Export: png, tiff, jpeg, dicom, xcf, psd (up to version 6,
+from version 7 on, the photoshop file format is closed and it
+is impossible to get the spec to implement support in a
+free software application), gif, bmp, xpm, targa, rgb, openEXR.
+
+Embedded icc profiles and exif information are preserved on
+export to supporting file formats.
+
+Chalk's native file format stores icc and exif information.
+
+* Color models
+
+Chalk uses lcms for a dependable color workflow using icc profiles
+for importing, exporting, selecting paint colors, printing,
+cutting and pasting.
+
+** 8 bit/channel rgb, cmyk, grayscale, wet watercolors
+** 16 bit/channel rgb, cmyk, grayscale, l*a*b, xyz (xyz may be removed)
+** "half" rgb
+** 32 bit float rgb (HDR), lms
+** Colors can be selected from a color wheel, rgb or grayscale sliders
+ or with a palette
+
+* Editing
+
+** Unlimited undo and redo
+** Cut, copy and paste with conversion through icc profiles if necessary
+** paste into a new image
+
+** Viewing
+
+** Use OpenGL for display when possible
+** View fullscreen
+** Multiple views on one image
+** Rulers
+** zooming
+** show or hide all palette windows in one go
+** palette windows position is kept between sessions
+** When maximized, Chalk is usable on a 1024x768 screen with all
+ palettes open.
+** Permanently accurate histogram palette
+** Exposure slider for HDR images
+** Optional "greening-out" of inactive layers to assist with artistic
+ workflow.
+** Bird's eyeview of image and zooming (not sure this will be done in time)
+
+* Images
+
+** mirror, shear, rotate and scale images
+** change the size of the canvas
+** change the resolution of the image
+** convert images between colorspaces
+** set image properties (name, comments, profile, resolution)
+** Combine layers in different colorspaces. The bottom-most
+ layer determines the image colorspace.
+** Separate the channels of an image into grayscale (8 or 16 bits)
+ layers or images.
+
+* Layers
+
+** Embed KOffice documents as layers into an image
+** Group layers
+** Adjustment layers (not sure whether this'll make it)
+** Lock layers (tools and filters cannot change the layer, but not all
+ destructive operations are disabled yet)
+** Make layers invisible
+** Add and remove layers
+** Change the position of layers in the layer stack
+** Mirror, shear, rotate and scale layers
+** Save layer as image
+** Composite layers with supported composite options, like
+ over, in, out, atop, xor, plus, minus, add, subtract, diff,
+ mult, divide, dodge, burn, bumpmap, copy, copy one channel,
+ clear, dissolve, displace, darken, lighten, hue, saturation, value,
+ color, colorize, luminize, screen, overlay, erase. (Not all colorspaces
+ support all composite operations).
+** Change layer properties like name, position, colorspace
+** Create a drop shadow behind the layer
+** View the histogram of a layer; 16 bits or wider images have zoomable
+ histograms
+** Insert screenshot as layer
+
+
+* Selections
+
+** Select by colorrange
+** Feather selection
+** Invert selection
+
+* Tools
+
+Throught the innovative paintOp plugin system, all painting tools
+(brush, ellipse, line, etc.) can paint aliased, anti-aliased,
+erase, airbrush and more.
+
+** paintbrush
+** colorpicker
+** duplicate
+** ellipse
+** anti-aliased bucket fill and selection fill with color, patterns
+ or gradients.
+** gradient
+** line
+** layer or selection move
+** canvas pan
+** rectangle
+** text
+** zoom
+** crop
+** paint with filters (to be integrated in the paintop system)
+** polygons
+** polylines
+** stars
+** transform selection/layer
+** select similar colors
+** select by painting
+** select contiguous areas
+** select ellipse
+** deselect by erasing
+** select by painting outline
+** select polygonal
+** select rectangular
+
+* Filters
+
+Chalk can multithread the operation of some filters. Chalk's
+filters can be previewed in the filter gallery.
+
+** Apply previous filter again
+** bumpmap
+** image restoration with cimg
+** brightness/contrast
+** color adjustment per channel
+** autocontrast
+** desaturate
+** gaussian blur
+** sharpen
+** remove mean
+** emboss (laplacian, all directions, horizontal, vertical, horizontal and
+vertical)
+** edge detection (top, right, bottom, left)
+** custom convolution
+** cubism (converts to 8 bit rgba and back)
+** invert
+** reduce noise (simple and with wavelets)
+** oilpaint (converts to 8 bit rgba and back)
+** pixelize (converts to 8 bit rgba and back)
+** raindrops (converts to 8 bit rgba and back)
+** round corners
+** small tiles (converts to 8 bit rgba and back)
+** sobel (converts to 8 bit rgba and back)
+
+* Paint operations
+
+Chalk's paint operations are usable with all painting tools.
+
+PaintOps can support composite options, like
+over, in, out, atop, xor, plus, minus, add, subtract, diff,
+mult, divide, dodge, burn, bumpmap, copy, copy one channel,
+clear, dissolve, displace, darken, lighten, hue, saturation, value,
+color, colorize, luminize, screen, overlay, erase. (Not all colorspaces
+support all composite operations).
+
+PaintOps can support opacity settings and use the pressure value
+of a tablet. Tilt and rotation is not yet supported.
+
+** airbrush
+** eraser
+** anti-aliased brush
+** convolve
+** duplicate
+** aliased brush (pen tool)
+** smeary brush (not sure whether this will get finished in time)
+** paint with a tablet stylus. The pressure sensitivity
+ characteristics can be set.
+
+* Brushes
+
+** gimp brush tqshapes. Support for colored and grayscale brushes and
+ pipe brushes. Support from Gimp parasites in brushes.
+** custom brush tqshapes
+** text brush tqshapes
+** brushes created from layers or images. These brushes can be saved
+** colored brushes can also be used as tqmasks
+
+* Fills
+
+** gimp-style patterns
+** gimp-style gradients
+** custom gradients \ No newline at end of file
diff --git a/chalk/doc/chalk.kpr b/chalk/doc/chalk.kpr
new file mode 100644
index 000000000..b1fe023e8
--- /dev/null
+++ b/chalk/doc/chalk.kpr
Binary files differ
diff --git a/chalk/doc/chalk.pdf b/chalk/doc/chalk.pdf
new file mode 100644
index 000000000..1073941b5
--- /dev/null
+++ b/chalk/doc/chalk.pdf
Binary files differ
diff --git a/chalk/doc/chalk.xmi b/chalk/doc/chalk.xmi
new file mode 100644
index 000000000..913db5778
--- /dev/null
+++ b/chalk/doc/chalk.xmi
@@ -0,0 +1,56432 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<XMI xmlns:UML="org.omg/standards/UML" verified="false" timestamp="" xmi.version="1.2" >
+ <XMI.header>
+ <XMI.documentation>
+ <XMI.exporter>umbrello uml modeller http://uml.sf.net</XMI.exporter>
+ <XMI.exporterVersion>1.2.0</XMI.exporterVersion>
+ <XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
+ </XMI.documentation>
+ <XMI.model xmi.name="chalk" href="/home/boud/prj/koffice/chalk/doc/chalk.xmi" />
+ <XMI.metamodel xmi.name="UML" href="UML.xml" xmi.version="1.3" />
+ </XMI.header>
+ <XMI.content>
+ <docsettings viewid="1" documentation="" uniqueid="2643" />
+ <UML:Model>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2" name="int" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="3" name="char" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="4" name="bool" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="5" name="float" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="6" name="double" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="7" name="long" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="8" name="short" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="9" name="KisBuilderSubject" >
+ <UML:Operation visibility="public" xmi.id="10" type="virtual void" isAbstract="true" name="intr" />
+ <UML:Operation visibility="protected" xmi.id="11" type="virtual " name="~KisBuilderSubject" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="Build a KisImage representation of an image file." visibility="public" xmi.id="12" name="KisImageMagickConverter" >
+ <UML:Operation visibility="protected" xmi.id="18" type="KisImageMagickConverter &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="19" value="" type="const KisImageMagickConverter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="20" type="" name="KisImageMagickConverter" >
+ <UML:Parameter visibility="private" xmi.id="21" value="" type="KisDoc *" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="22" value="" type="KisUndoAdapter *" name="adapter" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="23" type="" name="KisImageMagickConverter" >
+ <UML:Parameter visibility="private" xmi.id="24" value="" type="const KisImageMagickConverter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="25" type="KisImageBuilder_Result" name="buildFile" >
+ <UML:Parameter visibility="private" xmi.id="26" value="" type="const KURL &amp;" name="uri" />
+ <UML:Parameter visibility="private" xmi.id="27" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="28" type="KisImageBuilder_Result" name="buildFile" >
+ <UML:Parameter visibility="private" xmi.id="29" value="" type="const KURL &amp;" name="uri" />
+ <UML:Parameter visibility="private" xmi.id="30" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="31" type="KisImageBuilder_Result" name="buildImage" >
+ <UML:Parameter visibility="private" xmi.id="32" value="" type="const KURL &amp;" name="uri" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="33" type="KisImageBuilder_Result" name="decode" >
+ <UML:Parameter visibility="private" xmi.id="34" value="" type="const KURL &amp;" name="uri" />
+ <UML:Parameter visibility="private" xmi.id="35" value="" type="bool" name="isBlob" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="36" type="KisImageSP" name="image" />
+ <UML:Operation visibility="protected" xmi.id="37" type="void" name="init" >
+ <UML:Parameter visibility="private" xmi.id="38" value="" type="KisDoc *" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="39" value="" type="KisUndoAdapter *" name="adapter" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="40" type="virtual void" name="intr" />
+ <UML:Operation visibility="public" xmi.id="41" type=TQSTRING_OBJECT_NAME_STRING name="readFilters" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="42" type=TQSTRING_OBJECT_NAME_STRING name="writeFilters" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="43" type="virtual " name="~KisImageMagickConverter" />
+ <UML:Attribute visibility="private" xmi.id="13" value="" type="KisUndoAdapter *" name="m_adapter" />
+ <UML:Attribute visibility="private" xmi.id="14" value="" type="QValueVector" name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="15" value="" type="KisDoc *" name="m_doc" />
+ <UML:Attribute visibility="private" xmi.id="16" value="" type="KisImageSP" name="m_img" />
+ <UML:Attribute visibility="private" xmi.id="17" value="" type="bool" name="m_stop" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="44" name="KisBuilderMonitor" >
+ <UML:Operation visibility="public" xmi.id="46" type="" name="KisBuilderMonitor" >
+ <UML:Parameter visibility="private" xmi.id="47" value="" type="QObject *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="48" value="" type="const char *" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="49" type="void" name="attach" >
+ <UML:Parameter visibility="private" xmi.id="50" value="" type="KisBuilderSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="51" type="void" name="detach" >
+ <UML:Parameter visibility="private" xmi.id="52" value="" type="KisBuilderSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="53" type="virtual " name="~KisBuilderMonitor" />
+ <UML:Attribute visibility="private" xmi.id="45" value="" type="vKisBuilderSubject" name="m_subjects" />
+ </UML:Class>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="55" name="KisImageBuilder_Result" >
+ <UML:EnumLiteral visibility="public" xmi.id="56" name="KisImageBuilder_RESULT_FAILURE" />
+ <UML:EnumLiteral visibility="public" xmi.id="57" name="KisImageBuilder_RESULT_NOT_EXIST" />
+ <UML:EnumLiteral visibility="public" xmi.id="58" name="KisImageBuilder_RESULT_NOT_LOCAL" />
+ <UML:EnumLiteral visibility="public" xmi.id="59" name="KisImageBuilder_RESULT_BAD_FETCH" />
+ <UML:EnumLiteral visibility="public" xmi.id="60" name="KisImageBuilder_RESULT_INVALID_ARG" />
+ <UML:EnumLiteral visibility="public" xmi.id="61" name="KisImageBuilder_RESULT_OK" />
+ <UML:EnumLiteral visibility="public" xmi.id="62" name="KisImageBuilder_RESULT_PROGRESS" />
+ <UML:EnumLiteral visibility="public" xmi.id="63" name="KisImageBuilder_RESULT_EMPTY" />
+ <UML:EnumLiteral visibility="public" xmi.id="64" name="KisImageBuilder_RESULT_BUSY" />
+ <UML:EnumLiteral visibility="public" xmi.id="65" name="KisImageBuilder_RESULT_NO_URI" />
+ <UML:EnumLiteral visibility="public" xmi.id="66" name="KisImageBuilder_RESULT_UNSUPPORTED" />
+ <UML:EnumLiteral visibility="public" xmi.id="67" name="KisImageBuilder_RESULT_INTR" />
+ <UML:EnumLiteral visibility="public" xmi.id="68" name="KisImageBuilder_RESULT_PATH" />
+ </UML:Enum>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="69" name="KisImageBuilder_Step" >
+ <UML:EnumLiteral visibility="public" xmi.id="70" name="KisImageBuilder_STEP_PREP" />
+ <UML:EnumLiteral visibility="public" xmi.id="71" name="KisImageBuilder_STEP_LOADING" />
+ <UML:EnumLiteral visibility="public" xmi.id="72" name="KisImageBuilder_STEP_SAVING" />
+ <UML:EnumLiteral visibility="public" xmi.id="73" name="KisImageBuilder_STEP_DECODING" />
+ <UML:EnumLiteral visibility="public" xmi.id="74" name="KisImageBuilder_STEP_TILING" />
+ <UML:EnumLiteral visibility="public" xmi.id="75" name="KisImageBuilder_STEP_DONE" />
+ <UML:EnumLiteral visibility="public" xmi.id="76" name="KisImageBuilder_STEP_ERROR" />
+ </UML:Enum>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="77" name="vKisBuilderSubject_it" />
+ <UML:DataType stereotype="datatype" comment="The KisResource class provides a representation of Chalk image resources. This
+includes, but not limited to, brushes and patterns.
+
+This replaces the KisKrayon facility that used to be present in Krayon." visibility="public" xmi.id="78" name="super" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="79" name="vKisBuilderSubject" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="80" name="vKisBuilderSubject_cit" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="81" name="KisStrategyColorSpaceCMYK" >
+ <UML:Operation visibility="public" xmi.id="86" type="" name="KisStrategyColorSpaceCMYK" />
+ <UML:Operation visibility="public" xmi.id="87" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="88" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="89" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="90" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="91" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="92" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="93" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="94" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="95" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="96" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="97" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="98" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="99" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="100" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="101" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="102" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="103" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="104" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="105" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="106" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="107" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="108" type="virtual void" name="render" >
+ <UML:Parameter visibility="private" xmi.id="109" value="" type="KisImageSP" name="projection" />
+ <UML:Parameter visibility="private" xmi.id="110" value="" type="QPainter &amp;" name="painter" />
+ <UML:Parameter visibility="private" xmi.id="111" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="112" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="113" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="114" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="115" type="virtual void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="116" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="117" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="118" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="119" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="120" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="121" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="122" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="123" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="124" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="125" type="virtual void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="126" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="127" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="128" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="129" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="130" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="131" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="132" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="133" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="134" type="virtual " name="~KisStrategyColorSpaceCMYK" />
+ <UML:Attribute visibility="private" xmi.id="82" value="" type="QUANTUM *" name="m_buf" />
+ <UML:Attribute visibility="private" xmi.id="83" value="" type="KPixmapIO" name="m_pixio" />
+ <UML:Attribute visibility="private" xmi.id="84" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_pixmap" />
+ <UML:Attribute visibility="private" xmi.id="85" value="" type="ColorLUT" name="m_rgbLUT" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="135" name="RGB" >
+ <UML:Attribute visibility="public" xmi.id="136" value="" type="QUANTUM" name="b" />
+ <UML:Attribute visibility="public" xmi.id="137" value="" type="QUANTUM" name="g" />
+ <UML:Attribute visibility="public" xmi.id="138" value="" type="QUANTUM" name="r" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="139" name="KisStrategyColorSpace" >
+ <UML:Operation visibility="protected" xmi.id="140" type="KisStrategyColorSpace &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="141" value="" type="const KisStrategyColorSpace &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="142" type="" name="KisStrategyColorSpace" />
+ <UML:Operation visibility="protected" xmi.id="143" type="" name="KisStrategyColorSpace" >
+ <UML:Parameter visibility="private" xmi.id="144" value="" type="const KisStrategyColorSpace &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="145" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="146" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="147" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="148" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="149" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="150" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="151" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="152" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="153" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="154" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="155" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="156" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="157" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="158" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="159" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="160" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="161" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="162" type="virtual void" isAbstract="true" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="163" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="164" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="165" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="166" type="virtual void" isAbstract="true" name="render" >
+ <UML:Parameter visibility="private" xmi.id="167" value="" type="KisImageSP" name="projection" />
+ <UML:Parameter visibility="private" xmi.id="168" value="" type="QPainter &amp;" name="painter" />
+ <UML:Parameter visibility="private" xmi.id="169" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="170" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="171" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="172" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="173" type="virtual void" isAbstract="true" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="174" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="175" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="176" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="177" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="178" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="179" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="180" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="181" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="182" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="183" type="virtual void" isAbstract="true" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="184" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="185" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="186" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="187" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="188" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="189" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="190" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="191" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="192" type="virtual " name="~KisStrategyColorSpace" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="193" name="KisColorSpaceFactoryInterface" >
+ <UML:Operation visibility="protected" xmi.id="195" type="KisColorSpaceFactoryInterface" name="=" >
+ <UML:Parameter visibility="private" xmi.id="196" value="" type="const KisColorSpaceFactoryInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="197" type="" name="KisColorSpaceFactoryInterface" />
+ <UML:Operation visibility="protected" xmi.id="198" type="" name="KisColorSpaceFactoryInterface" >
+ <UML:Parameter visibility="private" xmi.id="199" value="" type="const KisColorSpaceFactoryInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="200" type="virtual KisStrategyColorSpaceSP" isAbstract="true" name="create" >
+ <UML:Parameter visibility="private" xmi.id="201" value="" type="const KisPaintDeviceSP &amp;" name="device" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="202" type="virtual KisStrategyColorSpaceSP" isAbstract="true" name="create" >
+ <UML:Parameter visibility="private" xmi.id="203" value="" type="enumImgType" name="imgType" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="204" type="KisColorSpaceFactoryInterface *" name="singleton" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="205" type="virtual " name="~KisColorSpaceFactoryInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="206" name="KisStrategyColorSpaceRGB" >
+ <UML:Operation visibility="public" xmi.id="210" type="" name="KisStrategyColorSpaceRGB" />
+ <UML:Operation visibility="public" xmi.id="211" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="212" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="213" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="214" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="215" value="" type="QRgb" name="rgb" />
+ <UML:Parameter visibility="private" xmi.id="216" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="217" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="218" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="219" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="220" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="221" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="222" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="223" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="224" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="225" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="226" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="227" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="228" type="virtual void" name="nativeColor" >
+ <UML:Parameter visibility="private" xmi.id="229" value="" type="const QColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="230" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="231" value="" type="QUANTUM *" name="dst" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="232" type="virtual void" name="render" >
+ <UML:Parameter visibility="private" xmi.id="233" value="" type="KisImageSP" name="projection" />
+ <UML:Parameter visibility="private" xmi.id="234" value="" type="QPainter &amp;" name="painter" />
+ <UML:Parameter visibility="private" xmi.id="235" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="236" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="237" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="238" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="239" type="virtual void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="240" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="241" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="242" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="243" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="244" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="245" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="246" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="247" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="248" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="249" type="virtual void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="250" value="" type="Q_INT32" name="stride" />
+ <UML:Parameter visibility="private" xmi.id="251" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="252" value="" type="Q_INT32" name="dststride" />
+ <UML:Parameter visibility="private" xmi.id="253" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="254" value="" type="Q_INT32" name="srcstride" />
+ <UML:Parameter visibility="private" xmi.id="255" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="256" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="257" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="258" type="virtual " name="~KisStrategyColorSpaceRGB" />
+ <UML:Attribute visibility="private" xmi.id="207" value="" type="QUANTUM *" name="m_buf" />
+ <UML:Attribute visibility="private" xmi.id="208" value="" type="KPixmapIO" name="m_pixio" />
+ <UML:Attribute visibility="private" xmi.id="209" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_pixmap" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="This class implements the conversion of the Chalk images that contain cmy + transparency
+data to rbg for screen rendering." visibility="public" xmi.id="259" name="CMYK" >
+ <UML:Operation visibility="public" xmi.id="264" type="bool" name="&lt;" >
+ <UML:Parameter visibility="private" xmi.id="265" value="" type="const CMYK &amp;" />
+ </UML:Operation>
+ <UML:Attribute visibility="public" xmi.id="260" value="" type="QUANTUM" name="c" />
+ <UML:Attribute visibility="public" xmi.id="261" value="" type="QUANTUM" name="k" />
+ <UML:Attribute visibility="public" xmi.id="262" value="" type="QUANTUM" name="m" />
+ <UML:Attribute visibility="public" xmi.id="263" value="" type="QUANTUM" name="y" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="266" name="KisColorSpaceFactoryFlyweight" >
+ <UML:Operation visibility="public" xmi.id="268" type="" name="KisColorSpaceFactoryFlyweight" />
+ <UML:Operation visibility="public" xmi.id="269" type="virtual KisStrategyColorSpaceSP" name="create" >
+ <UML:Parameter visibility="private" xmi.id="270" value="" type="const KisPaintDeviceSP &amp;" name="device" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="271" type="virtual KisStrategyColorSpaceSP" name="create" >
+ <UML:Parameter visibility="private" xmi.id="272" value="" type="enumImgType" name="imgType" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="273" type="KisStrategyColorSpaceSP" name="tqfind" >
+ <UML:Parameter visibility="private" xmi.id="274" value="" type="enumImgType" name="imgType" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="275" type="virtual " name="~KisColorSpaceFactoryFlyweight" />
+ <UML:Attribute visibility="private" xmi.id="267" value="" type="acFlyweights" name="m_flyweights" />
+ </UML:Class>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="279" name="acFlyweights_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="280" name="ColorLUT" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="281" name="acFlyweights_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="282" name="acFlyweights" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="283" name="KisScopedLock" >
+ <UML:Operation visibility="public" xmi.id="285" type="" name="KisScopedLock" >
+ <UML:Parameter visibility="private" xmi.id="286" value="" type="QMutex *" name="lock" />
+ <UML:Parameter visibility="private" xmi.id="287" value="" type="bool" name="initialLock" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="288" type="void" name="lock" />
+ <UML:Operation visibility="public" xmi.id="289" type="void" name="trylock" />
+ <UML:Operation visibility="public" xmi.id="290" type="void" name="unlock" />
+ <UML:Operation visibility="public" xmi.id="291" type="" name="~KisScopedLock" />
+ <UML:Attribute visibility="private" xmi.id="284" value="" type="QMutex *" name="m_mutex" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="292" name="KisStrategyMove" >
+ <UML:Operation visibility="protected" xmi.id="300" type="KisStrategyMove &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="301" value="" type="const KisStrategyMove &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="302" type="" name="KisStrategyMove" />
+ <UML:Operation visibility="public" xmi.id="303" type="explicit" name="KisStrategyMove" >
+ <UML:Parameter visibility="private" xmi.id="304" value="" type="KisCanvasSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="305" type="" name="KisStrategyMove" >
+ <UML:Parameter visibility="private" xmi.id="306" value="" type="const KisStrategyMove &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="307" type="void" name="drag" >
+ <UML:Parameter visibility="private" xmi.id="308" value="" type="const QPoint &amp;" name="pos" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="309" type="void" name="endDrag" >
+ <UML:Parameter visibility="private" xmi.id="310" value="" type="const QPoint &amp;" name="pos" />
+ <UML:Parameter visibility="private" xmi.id="311" value="" type="bool" name="undo" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="312" type="void" name="reset" >
+ <UML:Parameter visibility="private" xmi.id="313" value="" type="KisCanvasSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="314" type="void" name="simpleMove" >
+ <UML:Parameter visibility="private" xmi.id="315" value="" type="Q_INT32" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="316" value="" type="Q_INT32" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="317" value="" type="Q_INT32" name="x2" />
+ <UML:Parameter visibility="private" xmi.id="318" value="" type="Q_INT32" name="y2" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="319" type="void" name="simpleMove" >
+ <UML:Parameter visibility="private" xmi.id="320" value="" type="const QPoint &amp;" name="pt1" />
+ <UML:Parameter visibility="private" xmi.id="321" value="" type="const QPoint &amp;" name="pt2" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="322" type="void" name="startDrag" >
+ <UML:Parameter visibility="private" xmi.id="323" value="" type="const QPoint &amp;" name="pos" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="324" type="virtual " name="~KisStrategyMove" />
+ <UML:Attribute visibility="private" xmi.id="293" value="" type="KisCanvasControllerInterface *" name="m_controller" />
+ <UML:Attribute visibility="private" xmi.id="294" value="" type="KoDocument *" name="m_doc" />
+ <UML:Attribute visibility="private" xmi.id="295" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_dragStart" />
+ <UML:Attribute visibility="private" xmi.id="296" value="" type="bool" name="m_dragging" />
+ <UML:Attribute visibility="private" xmi.id="297" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_layerPosition" />
+ <UML:Attribute visibility="private" xmi.id="298" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_layerStart" />
+ <UML:Attribute visibility="private" xmi.id="299" value="" type="KisCanvasSubject *" name="m_subject" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="KisTileMgr manages the imagedata that for implementations of KisRenderInterface.
+Those are:
+
+KisPaintDevices
+ KisLayer
+ KisBackround
+ KisSelection
+ KisChannel
+ KisMask
+
+and
+
+KisImage
+
+Imagedata is structured in the form of tiles, by default 64 by 64
+pixels big. The KisTileMgr is smart enough to hide most of the
+details of reading on and writing from tiles.
+
+@short KisTileMgr manages the pixels for every layer.
+" visibility="public" xmi.id="325" name="KisTileMgr" >
+ <UML:Operation visibility="protected" xmi.id="335" type="KisTileMgr &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="336" value="" type="const KisTileMgr &amp;" />
+ </UML:Operation>
+ <UML:Operation comment="Create a new KisTileMgr of width and height with the
+specified colour depth. Deep copies the tiles of tm to the
+new KisTileMgr.
+
+XXX: I am not sure what happens when tm is bigger or smaller
+than width and height, nor what happens when tm has a
+different depth." visibility="public" xmi.id="337" type="" name="KisTileMgr" >
+ <UML:Parameter visibility="private" xmi.id="338" value="" type="KisTileMgr *" name="tm" />
+ <UML:Parameter visibility="private" xmi.id="339" value="" type="Q_UINT32" name="depth" />
+ <UML:Parameter visibility="private" xmi.id="340" value="" type="Q_UINT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="341" value="" type="Q_UINT32" name="height" />
+ </UML:Operation>
+ <UML:Operation comment="Create a KisTileMgr of width and height with the specified
+colour depth." visibility="public" xmi.id="342" type="" name="KisTileMgr" >
+ <UML:Parameter visibility="private" xmi.id="343" value="" type="Q_UINT32" name="depth" />
+ <UML:Parameter visibility="private" xmi.id="344" value="" type="Q_UINT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="345" value="" type="Q_UINT32" name="height" />
+ </UML:Operation>
+ <UML:Operation comment="Creates a new KisTileMgr based on rhs, shares a reference
+to the tiles of rhs." visibility="public" xmi.id="346" type="" name="KisTileMgr" >
+ <UML:Parameter visibility="private" xmi.id="347" value="" type="const KisTileMgr &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="348" type="void" name="allocate" >
+ <UML:Parameter visibility="private" xmi.id="349" value="" type="Q_INT32" name="ntiles" />
+ </UML:Operation>
+ <UML:Operation comment="XXX?" visibility="public" xmi.id="350" type="void" name="attach" >
+ <UML:Parameter visibility="private" xmi.id="351" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="352" value="" type="Q_INT32" name="tilenum" />
+ <UML:Parameter visibility="private" xmi.id="353" value="" type="bool" name="keepold" />
+ </UML:Operation>
+ <UML:Operation comment="Color-depth of the KisRenderInterface implementation
+managed by this KisTileMgr" visibility="public" xmi.id="354" type="Q_INT32" name="depth" />
+ <UML:Operation comment="XXX?" visibility="public" xmi.id="355" type="void" name="detach" >
+ <UML:Parameter visibility="private" xmi.id="356" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="357" value="" type="Q_INT32" name="tilenum" />
+ <UML:Parameter visibility="private" xmi.id="358" value="" type="bool" name="keepold" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="359" type="void" name="duplicate" >
+ <UML:Parameter visibility="private" xmi.id="360" value="" type="Q_INT32" name="ntiles" />
+ <UML:Parameter visibility="private" xmi.id="361" value="" type="KisTileMgr *" name="tm" />
+ </UML:Operation>
+ <UML:Operation comment="Returns true if this KisTileMgr does not manage any
+tiles." visibility="public" xmi.id="362" type="bool" name="empty" />
+ <UML:Operation comment="Height in pixels of the total area managed by this KisTileMgr" visibility="public" xmi.id="363" type="Q_INT32" name="height" />
+ <UML:Operation comment="XXX" visibility="public" xmi.id="364" type="KisTileSP" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="365" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="366" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="367" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation comment="XXX" visibility="public" xmi.id="368" type="KisTileSP" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="369" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation comment="XXX" visibility="public" xmi.id="370" type="KisTileSP" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="371" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="372" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="373" type="KisTileSP" name="tqinvalidateTile" >
+ <UML:Parameter visibility="private" xmi.id="374" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="375" value="" type="Q_INT32" name="tilenum" />
+ </UML:Operation>
+ <UML:Operation comment="XXX" visibility="public" xmi.id="376" type="void" name="tqinvalidateTiles" >
+ <UML:Parameter visibility="private" xmi.id="377" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation comment="Total size in memory the data managed by this KisTileMgr " visibility="public" xmi.id="378" type="Q_UINT32" name="memSize" />
+ <UML:Operation comment="Number of columns of tiles managed by this KisTileMgr" visibility="public" xmi.id="379" type="Q_UINT32" name="ncols" />
+ <UML:Operation comment="Number of rows of tiles managed by this KisTileMgr" visibility="public" xmi.id="380" type="Q_UINT32" name="nrows" />
+ <UML:Operation comment="Returns the KisPixelData defined by the rectangle x1, y1,
+x2, y2. Depending on mode, this data is readable, writable
+or both." visibility="public" xmi.id="381" type="KisPixelDataSP" name="pixelData" >
+ <UML:Parameter visibility="private" xmi.id="382" value="" type="Q_INT32" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="383" value="" type="Q_INT32" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="384" value="" type="Q_INT32" name="x2" />
+ <UML:Parameter visibility="private" xmi.id="385" value="" type="Q_INT32" name="y2" />
+ <UML:Parameter visibility="private" xmi.id="386" value="" type="Q_INT32" name="mode" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="387" type="void" name="readPixelData" >
+ <UML:Parameter visibility="private" xmi.id="388" value="" type="KisPixelDataSP" name="pd" />
+ </UML:Operation>
+ <UML:Operation comment="Read the area defined by x1, y2, x2, y2 into the buffer. Stride is number of bytes
+that a pixel takes in the buffer." visibility="public" xmi.id="389" type="void" name="readPixelData" >
+ <UML:Parameter visibility="private" xmi.id="390" value="" type="Q_INT32" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="391" value="" type="Q_INT32" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="392" value="" type="Q_INT32" name="x2" />
+ <UML:Parameter visibility="private" xmi.id="393" value="" type="Q_INT32" name="y2" />
+ <UML:Parameter visibility="private" xmi.id="394" value="" type="QUANTUM *" name="buffer" />
+ <UML:Parameter visibility="private" xmi.id="395" value="" type="Q_UINT32" name="stride" />
+ </UML:Operation>
+ <UML:Operation comment="Not sure what this does... Perhaps write changed data if
+owner, else mark something invalid. XXX" visibility="public" xmi.id="396" type="void" name="releasePixelData" >
+ <UML:Parameter visibility="private" xmi.id="397" value="" type="KisPixelDataSP" name="pd" />
+ </UML:Operation>
+ <UML:Operation comment="Create or duplicate a tile with identity tilenum; tilenum
+is computed from the x/y coordinates of the tile in the
+image
+
+XXX: Not sure what 'mode' is. Presumbly related to the
+TILEMODE constants." visibility="public" xmi.id="398" type="KisTileSP" name="tile" >
+ <UML:Parameter visibility="private" xmi.id="399" value="" type="Q_INT32" name="tilenum" />
+ <UML:Parameter visibility="private" xmi.id="400" value="" type="Q_INT32" name="mode" />
+ </UML:Operation>
+ <UML:Operation comment="Create or duplicate a tile at location xpix/ypix.
+
+XXX: Not sure what 'mode' is. Presumbly related to the
+TILEMODE constants." visibility="public" xmi.id="401" type="KisTileSP" name="tile" >
+ <UML:Parameter visibility="private" xmi.id="402" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="403" value="" type="Q_INT32" name="ypix" />
+ <UML:Parameter visibility="private" xmi.id="404" value="" type="Q_INT32" name="mode" />
+ </UML:Operation>
+ <UML:Operation comment="Puts the x/y coordinates of the top left (?) corner
+of tile in coord." visibility="public" xmi.id="405" type="void" name="tileCoord" >
+ <UML:Parameter visibility="private" xmi.id="406" value="" type="const KisTileSP &amp;" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="407" value="" type="QPoint &amp;" name="coord" />
+ </UML:Operation>
+ <UML:Operation comment="Puts the x/y coordinates of the top left (?) corner
+of tile in x and y." visibility="public" xmi.id="408" type="void" name="tileCoord" >
+ <UML:Parameter visibility="private" xmi.id="409" value="" type="const KisTileSP &amp;" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="410" value="" type="Q_INT32 *" name="x" />
+ <UML:Parameter visibility="private" xmi.id="411" value="" type="Q_INT32 *" name="y" />
+ </UML:Operation>
+ <UML:Operation comment="XXX" visibility="public" xmi.id="412" type="void" name="tileMap" >
+ <UML:Parameter visibility="private" xmi.id="413" value="" type="Q_INT32" name="tilenum" />
+ <UML:Parameter visibility="private" xmi.id="414" value="" type="KisTileSP" name="src" />
+ </UML:Operation>
+ <UML:Operation comment="XXX" visibility="public" xmi.id="415" type="void" name="tileMap" >
+ <UML:Parameter visibility="private" xmi.id="416" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="417" value="" type="Q_INT32" name="ypix" />
+ <UML:Parameter visibility="private" xmi.id="418" value="" type="KisTileSP" name="src" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="419" type="Q_INT32" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="420" value="" type="Q_UINT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="421" value="" type="Q_UINT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation comment="Width in pixels of the total area managed by this KisTileMgr" visibility="public" xmi.id="422" type="Q_INT32" name="width" />
+ <UML:Operation visibility="public" xmi.id="423" type="void" name="writePixelData" >
+ <UML:Parameter visibility="private" xmi.id="424" value="" type="KisPixelDataSP" name="pd" />
+ </UML:Operation>
+ <UML:Operation comment="Commit the pixel data in buffer." visibility="public" xmi.id="425" type="void" name="writePixelData" >
+ <UML:Parameter visibility="private" xmi.id="426" value="" type="Q_INT32" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="427" value="" type="Q_INT32" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="428" value="" type="Q_INT32" name="x2" />
+ <UML:Parameter visibility="private" xmi.id="429" value="" type="Q_INT32" name="y2" />
+ <UML:Parameter visibility="private" xmi.id="430" value="" type="QUANTUM *" name="buffer" />
+ <UML:Parameter visibility="private" xmi.id="431" value="" type="Q_UINT32" name="stride" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="432" type="virtual " name="~KisTileMgr" />
+ <UML:Attribute visibility="private" xmi.id="326" value="" type="Q_UINT32" name="m_depth" />
+ <UML:Attribute visibility="private" xmi.id="327" value="" type="Q_UINT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="330" value="" type="QMutex" name="m_mutex" />
+ <UML:Attribute visibility="private" xmi.id="331" value="" type="Q_UINT32" name="m_ntileCols" />
+ <UML:Attribute visibility="private" xmi.id="332" value="" type="Q_UINT32" name="m_ntileRows" />
+ <UML:Attribute visibility="private" xmi.id="333" value="" type="vKisTileSP" name="m_tiles" />
+ <UML:Attribute visibility="private" xmi.id="334" value="" type="Q_UINT32" name="m_width" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="328" name="KisTileMediator" >
+ <UML:Operation visibility="protected" xmi.id="436" type="KisTileMediator &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="437" value="" type="const KisTileMediator &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="438" type="" name="KisTileMediator" />
+ <UML:Operation visibility="protected" xmi.id="439" type="" name="KisTileMediator" >
+ <UML:Parameter visibility="private" xmi.id="440" value="" type="const KisTileMediator &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="441" type="void" name="attach" >
+ <UML:Parameter visibility="private" xmi.id="442" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="443" value="" type="KisTileMgrSP" name="mgr" />
+ <UML:Parameter visibility="private" xmi.id="444" value="" type="Q_INT32" name="tilenum" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="445" type="void" name="detach" >
+ <UML:Parameter visibility="private" xmi.id="446" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="447" value="" type="KisTileMgrSP" name="mgr" />
+ <UML:Parameter visibility="private" xmi.id="448" value="" type="Q_INT32" name="tilenum" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="449" type="void" name="detachAll" >
+ <UML:Parameter visibility="private" xmi.id="450" value="" type="KisTileMgr *" name="mgr" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="451" type="Q_INT32" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="452" value="" type="KisTileSP" name="tile" />
+ <UML:Parameter visibility="private" xmi.id="453" value="" type="KisTileMgrSP" name="mgr" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="454" type="" name="~KisTileMediator" />
+ <UML:Attribute visibility="private" xmi.id="433" value="" type="KisTileMediatorSingleton *" name="m_instance" />
+ <UML:Attribute visibility="private" xmi.id="434" value="" type="QMutex" name="m_mutex" />
+ <UML:Attribute visibility="private" xmi.id="435" value="" type="Q_INT32" name="m_ref" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="455" name="KisTileSwapInterface" >
+ <UML:Operation visibility="public" xmi.id="456" type="" name="KisTileSwapInterface" />
+ <UML:Operation visibility="public" xmi.id="457" type="virtual Q_INT32" isAbstract="true" name="add" >
+ <UML:Parameter visibility="private" xmi.id="458" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="459" type="virtual void" isAbstract="true" name="remove" >
+ <UML:Parameter visibility="private" xmi.id="460" value="" type="Q_INT32" name="swapNo" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="461" type="virtual void" isAbstract="true" name="swapCompress" >
+ <UML:Parameter visibility="private" xmi.id="462" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="463" type="virtual void" isAbstract="true" name="swapDel" >
+ <UML:Parameter visibility="private" xmi.id="464" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="465" type="virtual void" isAbstract="true" name="swapIn" >
+ <UML:Parameter visibility="private" xmi.id="466" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="467" type="virtual void" isAbstract="true" name="swapInAsync" >
+ <UML:Parameter visibility="private" xmi.id="468" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="469" type="virtual void" isAbstract="true" name="swapOut" >
+ <UML:Parameter visibility="private" xmi.id="470" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="471" type="virtual " name="~KisTileSwapInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="472" name="KisTileCacheInterface" >
+ <UML:Operation visibility="public" xmi.id="473" type="" name="KisTileCacheInterface" />
+ <UML:Operation visibility="public" xmi.id="474" type="virtual void" isAbstract="true" name="flush" >
+ <UML:Parameter visibility="private" xmi.id="475" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="476" type="virtual void" isAbstract="true" name="insert" >
+ <UML:Parameter visibility="private" xmi.id="477" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="478" type="virtual void" isAbstract="true" name="tqsizeHint" >
+ <UML:Parameter visibility="private" xmi.id="479" value="" type="Q_INT32" name="nelements" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="480" type="virtual " name="~KisTileCacheInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="Provides abstraction to a tile. A tile tqcontains
+a part of a layer. Layers form an image." visibility="public" xmi.id="481" name="KisTile" >
+ <UML:Operation visibility="protected" xmi.id="496" type="KisTile &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="497" value="" type="const KisTile &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="498" type="" name="KisTile" >
+ <UML:Parameter visibility="private" xmi.id="499" value="" type="KisTile &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="500" type="" name="KisTile" >
+ <UML:Parameter visibility="private" xmi.id="501" value="" type="Q_INT32" name="depth" />
+ <UML:Parameter visibility="private" xmi.id="502" value="" type="KisTileCacheInterface *" name="cache" />
+ <UML:Parameter visibility="private" xmi.id="503" value="" type="KisTileSwapInterface *" name="swap" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="504" type="void" name="allocate" />
+ <UML:Operation visibility="public" xmi.id="505" type="QUANTUM *" name="data" >
+ <UML:Parameter visibility="private" xmi.id="506" value="" type="Q_INT32" name="xoff" />
+ <UML:Parameter visibility="private" xmi.id="507" value="" type="Q_INT32" name="yoff" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="508" type="Q_INT32" name="depth" />
+ <UML:Operation visibility="public" xmi.id="509" type="bool" name="dirty" />
+ <UML:Operation visibility="public" xmi.id="510" type="void" name="dirty" >
+ <UML:Parameter visibility="private" xmi.id="511" value="" type="bool" name="val" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="512" type="void" name="duplicate" >
+ <UML:Parameter visibility="private" xmi.id="513" value="" type="KisTile *" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="514" type="Q_INT32" name="height" />
+ <UML:Operation visibility="public" xmi.id="515" type="void" name="height" >
+ <UML:Parameter visibility="private" xmi.id="516" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="517" type="void" name="init" >
+ <UML:Parameter visibility="private" xmi.id="518" value="" type="Q_INT32" name="depth" />
+ <UML:Parameter visibility="private" xmi.id="519" value="" type="KisTileCacheInterface *" name="cache" />
+ <UML:Parameter visibility="private" xmi.id="520" value="" type="KisTileSwapInterface *" name="swap" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="521" type="void" name="initRowHints" />
+ <UML:Operation visibility="public" xmi.id="522" type="void" name="lock" />
+ <UML:Operation visibility="public" xmi.id="523" type="void" name="lockAsync" />
+ <UML:Operation visibility="public" xmi.id="524" type="QMutex *" name="mutex" />
+ <UML:Operation visibility="public" xmi.id="525" type="void" name="ref" />
+ <UML:Operation visibility="public" xmi.id="526" type="Q_INT32" name="refCount" />
+ <UML:Operation visibility="public" xmi.id="527" type="void" name="release" />
+ <UML:Operation visibility="public" xmi.id="528" type="Q_INT32" name="rowHint" >
+ <UML:Parameter visibility="private" xmi.id="529" value="" type="Q_INT32" name="row" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="530" type="void" name="setRowHint" >
+ <UML:Parameter visibility="private" xmi.id="531" value="" type="Q_INT32" name="row" />
+ <UML:Parameter visibility="private" xmi.id="532" value="" type="drawingHints" name="hint" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="533" type="Q_INT32" name="shareCount" />
+ <UML:Operation visibility="public" xmi.id="534" type="void" name="shareRef" />
+ <UML:Operation visibility="public" xmi.id="535" type="void" name="shareRelease" />
+ <UML:Operation visibility="public" xmi.id="536" type="Q_INT32" name="size" />
+ <UML:Operation visibility="public" xmi.id="537" type="bool" name="valid" />
+ <UML:Operation visibility="public" xmi.id="538" type="void" name="valid" >
+ <UML:Parameter visibility="private" xmi.id="539" value="" type="bool" name="valid" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="540" type="Q_INT32" name="width" />
+ <UML:Operation visibility="public" xmi.id="541" type="void" name="width" >
+ <UML:Parameter visibility="private" xmi.id="542" value="" type="Q_INT32" name="w" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="543" type="Q_INT32" name="writeCount" />
+ <UML:Operation visibility="public" xmi.id="544" type="void" name="writeRef" />
+ <UML:Operation visibility="public" xmi.id="545" type="virtual " name="~KisTile" />
+ <UML:Attribute visibility="private" xmi.id="483" value="" type="QUANTUM *" name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="484" value="" type="Q_INT32" name="m_depth" />
+ <UML:Attribute visibility="private" xmi.id="485" value="" type="bool" name="m_dirty" />
+ <UML:Attribute visibility="private" xmi.id="486" value="" type="Q_INT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="487" value="" type="QValueVector" name="m_hints" />
+ <UML:Attribute visibility="private" xmi.id="488" value="" type="QMutex" name="m_mutex" />
+ <UML:Attribute visibility="private" xmi.id="489" value="" type="Q_INT32" name="m_nref" />
+ <UML:Attribute visibility="private" xmi.id="490" value="" type="Q_INT32" name="m_nshare" />
+ <UML:Attribute visibility="private" xmi.id="491" value="" type="Q_INT32" name="m_nwrite" />
+ <UML:Attribute visibility="private" xmi.id="493" value="" type="Q_INT32" name="m_swapNo" />
+ <UML:Attribute visibility="private" xmi.id="494" value="" type="bool" name="m_valid" />
+ <UML:Attribute visibility="private" xmi.id="495" value="" type="Q_INT32" name="m_width" />
+ </UML:Class>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="546" name="drawingHints" >
+ <UML:EnumLiteral visibility="public" xmi.id="547" name="broken" />
+ <UML:EnumLiteral visibility="public" xmi.id="548" name="opaque" />
+ <UML:EnumLiteral visibility="public" xmi.id="549" name="transparent" />
+ <UML:EnumLiteral visibility="public" xmi.id="550" name="mixed" />
+ <UML:EnumLiteral visibility="public" xmi.id="551" name="outofrange" />
+ <UML:EnumLiteral visibility="public" xmi.id="552" name="undef" />
+ <UML:EnumLiteral visibility="public" xmi.id="553" name="unknown" />
+ </UML:Enum>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="554" name="KisTileSPLst" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="555" name="vKisTileSPLst" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="556" name="KisTileSPLst_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="557" name="vKisTileSPLst_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="558" name="vKisTileSPLst_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="559" name="KisTileSPLst_it" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="560" name="KisMerge" >
+ <UML:Operation visibility="public" xmi.id="565" type="" name="KisMerge" >
+ <UML:Parameter visibility="private" xmi.id="566" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="567" value="" type="bool" name="keepOld" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="568" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="569" value="" type="KisPainter &amp;" />
+ <UML:Parameter visibility="private" xmi.id="570" value="" type="KisPaintDeviceSP" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="571" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="572" value="" type="KisPainter &amp;" />
+ <UML:Parameter visibility="private" xmi.id="573" value="" type="KisSelectionSP" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="574" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="575" value="" type="KisPainter &amp;" />
+ <UML:Parameter visibility="private" xmi.id="576" value="" type="vKisPaintDeviceSP &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="577" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="578" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="579" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="580" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="581" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="582" value="" type="vKisLayerSP &amp;" name="layers" />
+ </UML:Operation>
+ <UML:Attribute visibility="private" xmi.id="561" value="" type="KisImageSP" name="m_img" />
+ <UML:Attribute visibility="private" xmi.id="562" value="" type="bool" name="m_keepOld" />
+ <UML:Attribute visibility="private" xmi.id="563" value="" type="QRect" name="m_rc" />
+ <UML:Attribute visibility="private" xmi.id="564" value="" type="cond_t" name="m_test" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="583" name="KisFlatten" >
+ <UML:Operation visibility="public" xmi.id="586" type="" name="KisFlatten" >
+ <UML:Parameter visibility="private" xmi.id="587" value="" type="QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="588" type="" name="KisFlatten" >
+ <UML:Parameter visibility="private" xmi.id="589" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="590" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="591" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="592" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="593" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="594" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="595" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="596" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="597" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="598" value="" type="KisPaintDeviceSP" name="dev" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="599" type="void" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="600" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="601" value="" type="KisPaintDeviceSP" name="dev" />
+ <UML:Parameter visibility="private" xmi.id="602" value="" type="Q_INT32" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="603" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="604" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="605" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="606" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="607" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="608" value="" type="vKisLayerSP &amp;" name="layers" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="609" type="virtual bool" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="610" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="611" value="" type="vKisPaintDeviceSP &amp;" name="devs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="612" type="virtual " name="~KisFlatten" />
+ <UML:Attribute visibility="private" xmi.id="584" value="" type="QRect" name="m_rc" />
+ <UML:Attribute visibility="private" xmi.id="585" value="" type="cond_t" name="m_test" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="613" name="KIsDocIface" >
+ <UML:Operation visibility="protected" xmi.id="615" type="virtual int" name="redoLimit" />
+ <UML:Operation visibility="protected" xmi.id="616" type="virtual void" name="renameImage" >
+ <UML:Parameter visibility="private" xmi.id="617" value="" type="const QString &amp;" name="oldName" />
+ <UML:Parameter visibility="private" xmi.id="618" value="" type="const QString &amp;" name="newName" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="619" type="virtual void" name="setRedoLimit" >
+ <UML:Parameter visibility="private" xmi.id="620" value="" type="int" name="limit" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="621" type="virtual void" name="setUndoLimit" >
+ <UML:Parameter visibility="private" xmi.id="622" value="" type="int" name="limit" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="623" type="virtual int" name="undoLimit" />
+ <UML:Attribute visibility="private" xmi.id="614" value="" type="KisDoc *" name="m_doc" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="624" name="KisAlphaMask" >
+ <UML:Operation comment="Create an alpha tqmask based on the gray values of the
+specified QImage. If the QImage is not grayscale, you're
+buggered." visibility="public" xmi.id="629" type="" name="KisAlphaMask" >
+ <UML:Parameter visibility="private" xmi.id="630" value="" type="const QImage &amp;" name="img" />
+ </UML:Operation>
+ <UML:Operation comment="Create an alpha tqmask based on the gray values of the
+specified QImage. If the QImage is not grayscale, you're
+buggered. The QImage is scaled using QImage::smoothScale,
+where the target w and h are computed by taking scale as a
+percentage." visibility="public" xmi.id="631" type="" name="KisAlphaMask" >
+ <UML:Parameter visibility="private" xmi.id="632" value="" type="const QImage &amp;" name="img" />
+ <UML:Parameter visibility="private" xmi.id="633" value="" type="double" name="scale" />
+ </UML:Operation>
+ <UML:Operation comment="@return the alpha value at the specified position.
+Returns QUANTUM OPACITY_TRANSPARENT if the value is
+outside the bounds of the tqmask.
+XXX: this is, of course, not the best way of tqmasking.
+Better would be to let KisAlphaMask fill a chunk of memory
+with the alpha values at the right position, something like
+void applyMask(QUANTUM *pixeldata, Q_INT32 pixelWidth,
+Q_INT32 alphaPos). That would be fastest, or we could
+provide an iterator over the tqmask, that would be nice, too." visibility="public" xmi.id="634" type="QUANTUM" name="alphaAt" >
+ <UML:Parameter visibility="private" xmi.id="635" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="636" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="637" type="void" name="computeAlpha" >
+ <UML:Parameter visibility="private" xmi.id="638" value="" type="const QImage &amp;" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="639" type="void" name="copyAlpha" >
+ <UML:Parameter visibility="private" xmi.id="640" value="" type="const QImage &amp;" name="img" />
+ </UML:Operation>
+ <UML:Operation comment="@return the number of alpha values in a scanline." visibility="public" xmi.id="641" type="Q_INT32" name="height" />
+ <UML:Operation comment="@return the scale factor." visibility="public" xmi.id="642" type="double" name="scale" />
+ <UML:Operation comment="@return the number of lines in the tqmask." visibility="public" xmi.id="643" type="Q_INT32" name="width" />
+ <UML:Operation visibility="public" xmi.id="644" type="virtual " name="~KisAlphaMask" />
+ <UML:Attribute visibility="private" xmi.id="625" value="" type="QValueVector" name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="626" value="" type="double" name="m_scale" />
+ <UML:Attribute visibility="private" xmi.id="627" value="" type="Q_INT32" name="m_scaledHeight" />
+ <UML:Attribute visibility="private" xmi.id="628" value="" type="Q_INT32" name="m_scaledWidth" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="This is the definition of the interface Chalk presents to
+dcop." visibility="public" xmi.id="645" name="KRayonViewIface" >
+ <UML:Operation visibility="protected" xmi.id="647" type="K_DCOP public :" name="KRayonViewIface" >
+ <UML:Parameter visibility="private" xmi.id="648" value="" type="KisView *" name="view_" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="649" type="k_dcop : void" name="copy" />
+ <UML:Operation visibility="protected" xmi.id="650" type="void" name="crop" />
+ <UML:Operation visibility="protected" xmi.id="651" type="void" name="cut" />
+ <UML:Operation visibility="protected" xmi.id="652" type="void" name="dialog_brushes" />
+ <UML:Operation visibility="protected" xmi.id="653" type="void" name="dialog_channels" />
+ <UML:Operation visibility="protected" xmi.id="654" type="void" name="dialog_colors" />
+ <UML:Operation visibility="protected" xmi.id="655" type="void" name="dialog_crayons" />
+ <UML:Operation visibility="protected" xmi.id="656" type="void" name="dialog_gradient" />
+ <UML:Operation visibility="protected" xmi.id="657" type="void" name="dialog_layers" />
+ <UML:Operation visibility="protected" xmi.id="658" type="void" name="dialog_patterns" />
+ <UML:Operation visibility="protected" xmi.id="659" type="void" name="hide_layer" />
+ <UML:Operation visibility="protected" xmi.id="660" type="void" name="insert_layer" />
+ <UML:Operation visibility="protected" xmi.id="661" type="void" name="layer_properties" />
+ <UML:Operation visibility="protected" xmi.id="662" type="void" name="link_layer" />
+ <UML:Operation visibility="protected" xmi.id="663" type="void" name="next_layer" />
+ <UML:Operation visibility="protected" xmi.id="664" type="void" name="paste" />
+ <UML:Operation visibility="protected" xmi.id="665" type="void" name="previous_layer" />
+ <UML:Operation visibility="protected" xmi.id="666" type="void" name="removeSelection" />
+ <UML:Operation visibility="protected" xmi.id="667" type="void" name="remove_layer" />
+ <UML:Operation visibility="protected" xmi.id="668" type="void" name="selectAll" />
+ <UML:Operation visibility="protected" xmi.id="669" type="void" name="unSelectAll" />
+ <UML:Attribute visibility="private" xmi.id="646" value="" type="KisView *" name="m_view" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="670" name="KIsImageIface" >
+ <UML:Operation visibility="protected" xmi.id="672" type="K_DCOP public :" name="KIsImageIface" >
+ <UML:Parameter visibility="private" xmi.id="673" value="" type="KisImage *" name="img_" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="674" type="bool" name="alpha" />
+ <UML:Operation visibility="protected" xmi.id="675" type="bool" name="empty" />
+ <UML:Operation visibility="protected" xmi.id="676" type="int" name="height" />
+ <UML:Operation visibility="protected" xmi.id="677" type="k_dcop : QString" name="name" />
+ <UML:Operation visibility="protected" xmi.id="678" type="void" name="setName" >
+ <UML:Parameter visibility="private" xmi.id="679" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="680" type="int" name="width" />
+ <UML:Attribute visibility="private" xmi.id="671" value="" type="KisImage *" name="m_img" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="681" name="KisBrush" >
+ <UML:Operation visibility="public" xmi.id="693" type="" name="KisBrush" >
+ <UML:Parameter visibility="private" xmi.id="694" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="695" type="" name="KisBrush" >
+ <UML:Parameter visibility="private" xmi.id="696" value="" type="const QString &amp;" name="filename" />
+ <UML:Parameter visibility="private" xmi.id="697" value="" type="const QValueVector &lt; Q_UINT8 > &amp;" name="data" />
+ <UML:Parameter visibility="private" xmi.id="698" value="" type="Q_UINT32 &amp;" name="dataPos" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="699" type="virtual enumBrushType" name="brushType" />
+ <UML:Operation visibility="protected" xmi.id="700" type="void" name="createMasks" >
+ <UML:Parameter visibility="private" xmi.id="701" value="" type="const QImage &amp;" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="702" type=TQPOINT_OBJECT_NAME_STRING name="hotSpot" />
+ <UML:Operation visibility="public" xmi.id="703" type="virtual QImage" name="img" />
+ <UML:Operation visibility="public" xmi.id="704" type="virtual bool" name="loadAsync" />
+ <UML:Operation comment="@return a tqmask computed from the grey-level values of the
+pixels in the brush." visibility="public" xmi.id="705" type="virtual KisAlphaMask *" name="tqmask" >
+ <UML:Parameter visibility="private" xmi.id="706" value="" type="Q_INT32" name="scale" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="707" type="virtual bool" name="saveAsync" />
+ <UML:Operation visibility="public" xmi.id="708" type="void" name="setHotSpot" >
+ <UML:Parameter visibility="private" xmi.id="709" value="" type=TQPOINT_OBJECT_NAME_STRING />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="710" type="virtual " name="~KisBrush" />
+ <UML:Attribute visibility="private" xmi.id="682" value="" type="enumBrushType" name="m_brushType" />
+ <UML:Attribute visibility="private" xmi.id="683" value="" type="Q_UINT32" name="m_bytes" />
+ <UML:Attribute visibility="private" xmi.id="684" value="" type="QValueVector" name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="685" value="" type="Q_UINT32" name="m_header_size" />
+ <UML:Attribute visibility="private" xmi.id="686" value="" type="Q_UINT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="687" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_hotSpot" />
+ <UML:Attribute visibility="private" xmi.id="688" value="" type="QImage" name="m_img" />
+ <UML:Attribute visibility="private" xmi.id="689" value="" type="Q_UINT32" name="m_magic_number" />
+ <UML:Attribute visibility="private" xmi.id="690" value="" type="QPtrList" name="m_tqmasks" />
+ <UML:Attribute visibility="private" xmi.id="691" value="" type="Q_UINT32" name="m_version" />
+ <UML:Attribute visibility="private" xmi.id="692" value="" type="Q_UINT32" name="m_width" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="711" name="KisBackground" >
+ <UML:Operation visibility="public" xmi.id="712" type="" name="KisBackground" >
+ <UML:Parameter visibility="private" xmi.id="713" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="714" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="715" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="716" type="virtual Q_INT32" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="717" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="718" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="719" type="virtual " name="~KisBackground" />
+ </UML:Class>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="720" name="enumBrushType" >
+ <UML:EnumLiteral visibility="public" xmi.id="721" name="INVALID" />
+ <UML:EnumLiteral visibility="public" xmi.id="722" name="MASK" />
+ <UML:EnumLiteral visibility="public" xmi.id="723" name="IMAGE" />
+ <UML:EnumLiteral visibility="public" xmi.id="724" name="PIPE_MASK" />
+ <UML:EnumLiteral visibility="public" xmi.id="725" name="PIPE_IMAGE" />
+ </UML:Enum>
+ <UML:Class stereotype="class" visibility="public" xmi.id="727" name="KisCommand" >
+ <UML:Operation visibility="public" xmi.id="730" type="" name="KisCommand" >
+ <UML:Parameter visibility="private" xmi.id="731" value="" type="KisUndoAdapter *" name="undoAdapter" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="732" type="" name="KisCommand" >
+ <UML:Parameter visibility="private" xmi.id="733" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="734" value="" type="KisUndoAdapter *" name="undoAdapter" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="735" type="KisUndoAdapter *" name="adapter" />
+ <UML:Operation visibility="public" xmi.id="736" type="virtual void" isAbstract="true" name="execute" />
+ <UML:Operation visibility="public" xmi.id="737" type="virtual QString" name="name" />
+ <UML:Operation visibility="public" xmi.id="738" type="virtual void" isAbstract="true" name="unexecute" />
+ <UML:Operation visibility="public" xmi.id="739" type="virtual " name="~KisCommand" />
+ <UML:Attribute visibility="private" xmi.id="728" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="729" value="" type="KisUndoAdapter *" name="m_undoAdapter" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="740" name="KisGuide" >
+ <UML:Operation visibility="public" xmi.id="745" type="" name="KisGuide" >
+ <UML:Parameter visibility="private" xmi.id="746" value="" type="Qt :: Qt::Orientation" name="o" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="747" type="bool" name="isSelected" />
+ <UML:Operation visibility="public" xmi.id="748" type="double" name="position" />
+ <UML:Operation visibility="public" xmi.id="749" type="virtual " name="~KisGuide" />
+ <UML:Attribute visibility="public" xmi.id="741" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="buffer" />
+ <UML:Attribute visibility="public" xmi.id="742" value="" type="bool" name="hasBuffer" />
+ <UML:Attribute visibility="public" xmi.id="743" value="" type="double" name="pos" />
+ <UML:Attribute visibility="public" xmi.id="744" value="" type="bool" name="selected" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="750" name="KisCanvasControllerInterface" >
+ <UML:Operation visibility="protected" xmi.id="751" type="KisCanvasControllerInterface &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="752" value="" type="const KisCanvasControllerInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="753" type="" name="KisCanvasControllerInterface" />
+ <UML:Operation visibility="protected" xmi.id="754" type="" name="KisCanvasControllerInterface" >
+ <UML:Parameter visibility="private" xmi.id="755" value="" type="const KisCanvasControllerInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="756" type="virtual QWidget *" isAbstract="true" name="canvas" />
+ <UML:Operation visibility="public" xmi.id="757" type="virtual Q_INT32" isAbstract="true" name="horzValue" />
+ <UML:Operation visibility="public" xmi.id="758" type="virtual void" isAbstract="true" name="updateCanvas" />
+ <UML:Operation visibility="public" xmi.id="759" type="virtual void" isAbstract="true" name="updateCanvas" >
+ <UML:Parameter visibility="private" xmi.id="760" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="761" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="762" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="763" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="764" type="virtual void" isAbstract="true" name="updateCanvas" >
+ <UML:Parameter visibility="private" xmi.id="765" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="766" type="virtual Q_INT32" isAbstract="true" name="vertValue" />
+ <UML:Operation visibility="public" xmi.id="767" type="virtual void" isAbstract="true" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="768" value="" type="Q_INT32 *" name="x" />
+ <UML:Parameter visibility="private" xmi.id="769" value="" type="Q_INT32 *" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="770" type="virtual QPoint" isAbstract="true" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="771" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="772" type="virtual QRect" isAbstract="true" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="773" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="774" type="virtual void" isAbstract="true" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="775" value="" type="Q_INT32 *" name="x" />
+ <UML:Parameter visibility="private" xmi.id="776" value="" type="Q_INT32 *" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="777" type="virtual QPoint" isAbstract="true" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="778" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="779" type="virtual QRect" isAbstract="true" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="780" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="781" type="virtual void" isAbstract="true" name="zoomIn" />
+ <UML:Operation visibility="public" xmi.id="782" type="virtual void" isAbstract="true" name="zoomIn" >
+ <UML:Parameter visibility="private" xmi.id="783" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="784" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="785" type="virtual void" isAbstract="true" name="zoomOut" />
+ <UML:Operation visibility="public" xmi.id="786" type="virtual void" isAbstract="true" name="zoomOut" >
+ <UML:Parameter visibility="private" xmi.id="787" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="788" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="789" type="virtual " name="~KisCanvasControllerInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="790" name="KisGuideMgr" >
+ <UML:Operation visibility="public" xmi.id="802" type="" name="KisGuideMgr" />
+ <UML:Operation visibility="public" xmi.id="803" type="KisGuideSP" name="add" >
+ <UML:Parameter visibility="private" xmi.id="804" value="" type="double" name="pos" />
+ <UML:Parameter visibility="private" xmi.id="805" value="" type="Qt :: Qt::Orientation" name="o" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="806" type="void" name="erase" >
+ <UML:Parameter visibility="private" xmi.id="807" value="" type="QPaintDevice *" name="device" />
+ <UML:Parameter visibility="private" xmi.id="808" value="" type="QWidget *" name="w" />
+ <UML:Parameter visibility="private" xmi.id="809" value="" type="Q_INT32" name="xOffset" />
+ <UML:Parameter visibility="private" xmi.id="810" value="" type="Q_INT32" name="yOffset" />
+ <UML:Parameter visibility="private" xmi.id="811" value="" type="double" name="zoom" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="812" type="KisGuideSP" name="tqfind" >
+ <UML:Parameter visibility="private" xmi.id="813" value="" type="double" name="x" />
+ <UML:Parameter visibility="private" xmi.id="814" value="" type="double" name="y" />
+ <UML:Parameter visibility="private" xmi.id="815" value="" type="double" name="d" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="816" type="KisGuideSP" name="findHorizontal" >
+ <UML:Parameter visibility="private" xmi.id="817" value="" type="double" name="y" />
+ <UML:Parameter visibility="private" xmi.id="818" value="" type="double" name="d" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="819" type="KisGuideSP" name="findVertical" >
+ <UML:Parameter visibility="private" xmi.id="820" value="" type="double" name="x" />
+ <UML:Parameter visibility="private" xmi.id="821" value="" type="double" name="d" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="822" type="bool" name="hasSelected" />
+ <UML:Operation visibility="public" xmi.id="823" type="void" name="load" >
+ <UML:Parameter visibility="private" xmi.id="824" value="" type="const QDomElement &amp;" name="element" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="825" type="void" name="moveSelectedByX" >
+ <UML:Parameter visibility="private" xmi.id="826" value="" type="double" name="d" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="827" type="void" name="moveSelectedByY" >
+ <UML:Parameter visibility="private" xmi.id="828" value="" type="double" name="d" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="829" type="void" name="paint" >
+ <UML:Parameter visibility="private" xmi.id="830" value="" type="QPaintDevice *" name="device" />
+ <UML:Parameter visibility="private" xmi.id="831" value="" type="QWidget *" name="w" />
+ <UML:Parameter visibility="private" xmi.id="832" value="" type="Q_INT32" name="xOffset" />
+ <UML:Parameter visibility="private" xmi.id="833" value="" type="Q_INT32" name="yOffset" />
+ <UML:Parameter visibility="private" xmi.id="834" value="" type="double" name="zoom" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="835" type="void" name="remove" >
+ <UML:Parameter visibility="private" xmi.id="836" value="" type="KisGuideSP" name="gd" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="837" type="void" name="removeSelected" />
+ <UML:Operation visibility="public" xmi.id="838" type="void" name="resize" />
+ <UML:Operation visibility="public" xmi.id="839" type="void" name="resize" >
+ <UML:Parameter visibility="private" xmi.id="840" value="" type="const QSize &amp;" name="size" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="841" type="void" name="resizeLinesPixmap" >
+ <UML:Parameter visibility="private" xmi.id="842" value="" type="const QSize &amp;" name="size" />
+ <UML:Parameter visibility="private" xmi.id="843" value="" type="QPixmap *" name="vLine" />
+ <UML:Parameter visibility="private" xmi.id="844" value="" type="QPixmap *" name="hLine" />
+ <UML:Parameter visibility="private" xmi.id="845" value="" type="QPixmap *" name="linePattern" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="846" type="void" name="save" >
+ <UML:Parameter visibility="private" xmi.id="847" value="" type="QDomElement &amp;" name="element" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="848" type="void" name="select" >
+ <UML:Parameter visibility="private" xmi.id="849" value="" type="KisGuideSP" name="gd" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="850" type="void" name="selectAll" />
+ <UML:Operation visibility="public" xmi.id="851" type="Q_INT32" name="selectedCount" />
+ <UML:Operation visibility="public" xmi.id="852" type="void" name="unselect" >
+ <UML:Parameter visibility="private" xmi.id="853" value="" type="KisGuideSP" name="gd" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="854" type="void" name="unselectAll" />
+ <UML:Operation visibility="public" xmi.id="855" type="" name="~KisGuideMgr" />
+ <UML:Attribute visibility="private" xmi.id="791" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_hGuideLines" />
+ <UML:Attribute visibility="private" xmi.id="792" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_hGuideLinesSelected" />
+ <UML:Attribute visibility="private" xmi.id="793" value="" type="vKisGuideSP" name="m_lines" />
+ <UML:Attribute visibility="private" xmi.id="794" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_pattern" />
+ <UML:Attribute visibility="private" xmi.id="795" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_patternSelected" />
+ <UML:Attribute visibility="private" xmi.id="796" value="" type="QSize" name="m_size" />
+ <UML:Attribute visibility="private" xmi.id="797" value="" type="vKisGuideSP" name="m_slines" />
+ <UML:Attribute visibility="private" xmi.id="798" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_vGuideLines" />
+ <UML:Attribute visibility="private" xmi.id="799" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_vGuideLinesSelected" />
+ <UML:Attribute visibility="private" xmi.id="800" value="" type="const char * []" name="s_xbm" />
+ <UML:Attribute visibility="private" xmi.id="801" value="" type="const char * []" name="s_xbm_selected" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="856" name="KisGradient" >
+ <UML:Operation visibility="public" xmi.id="861" type="" name="KisGradient" />
+ <UML:Operation visibility="public" xmi.id="862" type="uint" name="arrayPixelValue" >
+ <UML:Parameter visibility="private" xmi.id="863" value="" type="int" name="x" />
+ <UML:Parameter visibility="private" xmi.id="864" value="" type="int" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="865" type="QImage &amp;" name="dither" >
+ <UML:Parameter visibility="private" xmi.id="866" value="" type="QImage &amp;" name="img" />
+ <UML:Parameter visibility="private" xmi.id="867" value="" type="const QColor *" name="palette" />
+ <UML:Parameter visibility="private" xmi.id="868" value="" type="int" name="size" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="869" type="QImage" name="gradient" >
+ <UML:Parameter visibility="private" xmi.id="870" value="" type="const QSize &amp;" name="size" />
+ <UML:Parameter visibility="private" xmi.id="871" value="" type="const QColor &amp;" name="ca" />
+ <UML:Parameter visibility="private" xmi.id="872" value="" type="const QColor &amp;" name="cb" />
+ <UML:Parameter visibility="private" xmi.id="873" value="" type="KImageEffect :: GradientType" name="eff" />
+ <UML:Parameter visibility="private" xmi.id="874" value="" type="int" name="ncols" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="875" type="const int" name="height" />
+ <UML:Operation visibility="public" xmi.id="876" type="uint" name="imagePixelValue" >
+ <UML:Parameter visibility="private" xmi.id="877" value="" type="int" name="x" />
+ <UML:Parameter visibility="private" xmi.id="878" value="" type="int" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="879" type="void" name="mapHorGradient" >
+ <UML:Parameter visibility="private" xmi.id="880" value="" type="QRect" name="gradR" />
+ <UML:Parameter visibility="private" xmi.id="881" value="" type="KoColor" name="startColor" />
+ <UML:Parameter visibility="private" xmi.id="882" value="" type="KoColor" name="endColor" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="883" type="void" name="mapKdeGradient" >
+ <UML:Parameter visibility="private" xmi.id="884" value="" type="QRect" name="gradR" />
+ <UML:Parameter visibility="private" xmi.id="885" value="" type="KoColor" name="startColor" />
+ <UML:Parameter visibility="private" xmi.id="886" value="" type="KoColor" name="endColor" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="887" type="void" name="mapVertGradient" >
+ <UML:Parameter visibility="private" xmi.id="888" value="" type="QRect" name="gradR" />
+ <UML:Parameter visibility="private" xmi.id="889" value="" type="KoColor" name="startColor" />
+ <UML:Parameter visibility="private" xmi.id="890" value="" type="KoColor" name="endColor" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="891" type="int" name="nearestColor" >
+ <UML:Parameter visibility="private" xmi.id="892" value="" type="int" name="r" />
+ <UML:Parameter visibility="private" xmi.id="893" value="" type="int" name="g" />
+ <UML:Parameter visibility="private" xmi.id="894" value="" type="int" name="b" />
+ <UML:Parameter visibility="private" xmi.id="895" value="" type="const QColor *" name="palette" />
+ <UML:Parameter visibility="private" xmi.id="896" value="" type="int" name="size" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="897" type="void" name="setEffect" >
+ <UML:Parameter visibility="private" xmi.id="898" value="" type="KImageEffect :: GradientType" name="_effect" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="899" type="void" name="setNull" />
+ <UML:Operation visibility="public" xmi.id="900" type="const int" name="width" />
+ <UML:Operation visibility="public" xmi.id="901" type="" name="~KisGradient" />
+ <UML:Attribute visibility="private" xmi.id="857" value="" type="QMemArray" name="gradArray" />
+ <UML:Attribute visibility="private" xmi.id="858" value="" type="QImage" name="gradImage" />
+ <UML:Attribute visibility="private" xmi.id="859" value="" type="int" name="mGradientHeight" />
+ <UML:Attribute visibility="private" xmi.id="860" value="" type="int" name="mGradientWidth" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="902" name="KisDoc" >
+ <UML:Operation visibility="public" xmi.id="914" type="" name="KisDoc" >
+ <UML:Parameter visibility="private" xmi.id="915" value="" type="QWidget *" name="tqparentWidget" />
+ <UML:Parameter visibility="private" xmi.id="916" value="" type="const char *" name="widgetName" />
+ <UML:Parameter visibility="private" xmi.id="917" value="" type="QObject *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="918" value="" type="const char *" name="name" />
+ <UML:Parameter visibility="private" xmi.id="919" value="" type="bool" name="singleViewMode" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="920" type="virtual void" name="addCommand" >
+ <UML:Parameter visibility="private" xmi.id="921" value="" type="KCommand *" name="cmd" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="922" type="void" name="addImage" >
+ <UML:Parameter visibility="private" xmi.id="923" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="924" type="virtual void" name="beginMacro" >
+ <UML:Parameter visibility="private" xmi.id="925" value="" type="const QString &amp;" name="macroName" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="926" type="KisSelectionSP" name="clipboardSelection" />
+ <UML:Operation visibility="public" xmi.id="927" type="virtual bool" name="completeLoading" >
+ <UML:Parameter visibility="private" xmi.id="928" value="" type="KoStore *" name="store" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="929" type="virtual bool" name="completeSaving" >
+ <UML:Parameter visibility="private" xmi.id="930" value="" type="KoStore *" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="931" type="bool" name="tqcontains" >
+ <UML:Parameter visibility="private" xmi.id="932" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="933" type="virtual KoView *" name="createViewInstance" >
+ <UML:Parameter visibility="private" xmi.id="934" value="" type="QWidget *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="935" value="" type="const char *" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="936" type="virtual DCOPObject *" name="dcopObject" />
+ <UML:Operation visibility="public" xmi.id="937" type="bool" name="empty" />
+ <UML:Operation visibility="protected" xmi.id="938" type="virtual void" name="endMacro" />
+ <UML:Operation visibility="public" xmi.id="939" type="KisImageSP" name="findImage" >
+ <UML:Parameter visibility="private" xmi.id="940" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="941" type="Q_INT32" name="imageIndex" >
+ <UML:Parameter visibility="private" xmi.id="942" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="943" type="KisImageSP" name="imageNum" >
+ <UML:Parameter visibility="private" xmi.id="944" value="" type="Q_UINT32" name="num" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="945" type=TQSTRINGLIST_OBJECT_NAME_STRING name="images" />
+ <UML:Operation visibility="public" xmi.id="946" type="bool" name="importImage" >
+ <UML:Parameter visibility="private" xmi.id="947" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="948" type="virtual bool" name="inMacro" />
+ <UML:Operation visibility="protected" xmi.id="949" type="bool" name="init" />
+ <UML:Operation visibility="public" xmi.id="950" type="virtual bool" name="initDoc" />
+ <UML:Operation visibility="public" xmi.id="951" type="virtual bool" name="isEmpty" />
+ <UML:Operation visibility="public" xmi.id="952" type="KisLayerSP" name="layerAdd" >
+ <UML:Parameter visibility="private" xmi.id="953" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="954" value="" type="KisLayerSP" name="layer" />
+ <UML:Parameter visibility="private" xmi.id="955" value="" type="Q_INT32" name="position" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="956" type="KisLayerSP" name="layerAdd" >
+ <UML:Parameter visibility="private" xmi.id="957" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="958" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="959" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="960" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="961" value="" type="CompositeOp" name="compositeOp" />
+ <UML:Parameter visibility="private" xmi.id="962" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="963" value="" type=TQPOINT_OBJECT_NAME_STRING name="pos" />
+ <UML:Parameter visibility="private" xmi.id="964" value="" type="enumImgType" name="type" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="965" type="KisLayerSP" name="layerAdd" >
+ <UML:Parameter visibility="private" xmi.id="966" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="967" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="968" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="969" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="970" value="" type="QUANTUM" name="devOpacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="971" type="KisLayerSP" name="layerAdd" >
+ <UML:Parameter visibility="private" xmi.id="972" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="973" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="974" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="975" type="void" name="layerLower" >
+ <UML:Parameter visibility="private" xmi.id="976" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="977" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="978" type="void" name="layerNext" >
+ <UML:Parameter visibility="private" xmi.id="979" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="980" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="981" type="void" name="layerPrev" >
+ <UML:Parameter visibility="private" xmi.id="982" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="983" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="984" type="void" name="layerRaise" >
+ <UML:Parameter visibility="private" xmi.id="985" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="986" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="987" type="void" name="layerRemove" >
+ <UML:Parameter visibility="private" xmi.id="988" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="989" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="990" type="KisChannelSP" name="loadChannel" >
+ <UML:Parameter visibility="private" xmi.id="991" value="" type="const QDomElement &amp;" name="elem" />
+ <UML:Parameter visibility="private" xmi.id="992" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="993" type="KisImageSP" name="loadImage" >
+ <UML:Parameter visibility="private" xmi.id="994" value="" type="const QDomElement &amp;" name="elem" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="995" type="KisLayerSP" name="loadLayer" >
+ <UML:Parameter visibility="private" xmi.id="996" value="" type="const QDomElement &amp;" name="elem" />
+ <UML:Parameter visibility="private" xmi.id="997" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="998" type="virtual bool" name="loadOasis" >
+ <UML:Parameter visibility="private" xmi.id="999" value="" type="const QDomDocument &amp;" />
+ <UML:Parameter visibility="private" xmi.id="1000" value="" type="KoOasisStyles &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1001" type="virtual bool" name="loadXML" >
+ <UML:Parameter visibility="private" xmi.id="1002" value="" type="QIODevice *" />
+ <UML:Parameter visibility="private" xmi.id="1003" value="" type="const QDomDocument &amp;" name="doc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1004" type="virtual QCString" name="mimeType" />
+ <UML:Operation visibility="public" xmi.id="1005" type="bool" name="namePresent" >
+ <UML:Parameter visibility="private" xmi.id="1006" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1007" type="KisImageSP" name="newImage" >
+ <UML:Parameter visibility="private" xmi.id="1008" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1009" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1010" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1011" value="" type="enumImgType" name="type" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1012" type=TQSTRING_OBJECT_NAME_STRING name="nextImageName" />
+ <UML:Operation visibility="public" xmi.id="1013" type="Q_INT32" name="nimages" />
+ <UML:Operation visibility="public" xmi.id="1014" type="virtual void" name="paintContent" >
+ <UML:Parameter visibility="private" xmi.id="1015" value="" type="QPainter &amp;" name="painter" />
+ <UML:Parameter visibility="private" xmi.id="1016" value="" type="const QRect &amp;" name="rect" />
+ <UML:Parameter visibility="private" xmi.id="1017" value="" type="bool" name="transparent" />
+ <UML:Parameter visibility="private" xmi.id="1018" value="" type="double" name="zoomX" />
+ <UML:Parameter visibility="private" xmi.id="1019" value="" type="double" name="zoomY" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1020" type="Q_INT32" name="redoLimit" />
+ <UML:Operation visibility="public" xmi.id="1021" type="void" name="removeImage" >
+ <UML:Parameter visibility="private" xmi.id="1022" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1023" type="void" name="removeImage" >
+ <UML:Parameter visibility="private" xmi.id="1024" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1025" type="void" name="renameImage" >
+ <UML:Parameter visibility="private" xmi.id="1026" value="" type="const QString &amp;" name="oldName" />
+ <UML:Parameter visibility="private" xmi.id="1027" value="" type="const QString &amp;" name="newName" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1028" type="QDomElement" name="saveChannel" >
+ <UML:Parameter visibility="private" xmi.id="1029" value="" type="QDomDocument &amp;" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="1030" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1031" type="QDomElement" name="saveImage" >
+ <UML:Parameter visibility="private" xmi.id="1032" value="" type="QDomDocument &amp;" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="1033" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1034" type="QDomElement" name="saveLayer" >
+ <UML:Parameter visibility="private" xmi.id="1035" value="" type="QDomDocument &amp;" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="1036" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1037" type="virtual QDomDocument" name="saveXML" />
+ <UML:Operation visibility="public" xmi.id="1038" type="void" name="setClipboardSelection" >
+ <UML:Parameter visibility="private" xmi.id="1039" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1040" type="void" name="setLayerProperties" >
+ <UML:Parameter visibility="private" xmi.id="1041" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1042" value="" type="KisLayerSP" name="layer" />
+ <UML:Parameter visibility="private" xmi.id="1043" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="1044" value="" type="CompositeOp" name="compositeOp" />
+ <UML:Parameter visibility="private" xmi.id="1045" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1046" type="void" name="setProjection" >
+ <UML:Parameter visibility="private" xmi.id="1047" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1048" type="void" name="setRedoLimit" >
+ <UML:Parameter visibility="private" xmi.id="1049" value="" type="Q_INT32" name="limit" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1050" type="virtual void" name="setUndo" >
+ <UML:Parameter visibility="private" xmi.id="1051" value="" type="bool" name="undo" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1052" type="void" name="setUndoLimit" >
+ <UML:Parameter visibility="private" xmi.id="1053" value="" type="Q_INT32" name="limit" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1054" type="void" name="setupColorspaces" />
+ <UML:Operation visibility="protected" xmi.id="1055" type="virtual bool" name="undo" />
+ <UML:Operation visibility="public" xmi.id="1056" type="Q_INT32" name="undoLimit" />
+ <UML:Operation visibility="public" xmi.id="1057" type="virtual " name="~KisDoc" />
+ <UML:Attribute visibility="private" xmi.id="903" value="" type="KisSelectionSP" name="m_clipboard" />
+ <UML:Attribute visibility="private" xmi.id="904" value="" type="KCommandHistory *" name="m_cmdHistory" />
+ <UML:Attribute visibility="private" xmi.id="905" value="" type="KisStrategyColorSpaceMap" name="m_colorspaces" />
+ <UML:Attribute visibility="private" xmi.id="906" value="" type="Q_INT32" name="m_conversionDepth" />
+ <UML:Attribute visibility="private" xmi.id="907" value="" type="KMacroCommand *" name="m_currentMacro" />
+ <UML:Attribute visibility="private" xmi.id="908" value="" type="DCOPObject *" name="m_dcop" />
+ <UML:Attribute visibility="private" xmi.id="909" value="" type="vKisImageSP" name="m_images" />
+ <UML:Attribute visibility="private" xmi.id="910" value="" type="KisNameServer *" name="m_nserver" />
+ <UML:Attribute visibility="private" xmi.id="911" value="" type="KisImageSP" name="m_projection" />
+ <UML:Attribute visibility="private" xmi.id="912" value="" type="bool" name="m_pushedClipboard" />
+ <UML:Attribute visibility="private" xmi.id="913" value="" type="bool" name="m_undo" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1058" name="KisCursor" >
+ <UML:Operation visibility="public" xmi.id="1059" type="" name="KisCursor" />
+ <UML:Operation visibility="public" xmi.id="1060" type="QCursor" name="airbrushCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1061" type="QCursor" name="arrowCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1062" type="QCursor" name="blankCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1063" type="QCursor" name="brushCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1064" type="QCursor" name="colorChangerCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1065" type="QCursor" name="crossCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1066" type="QCursor" name="eraserCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1067" type="QCursor" name="fillerCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1068" type="QCursor" name="handCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1069" type="QCursor" name="ibeamCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1070" type="QCursor" name="moveCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1071" type="QCursor" name="penCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1072" type="QCursor" name="pickerCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1073" type="QCursor" name="pointingHandCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1074" type="QCursor" name="selectCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1075" type="QCursor" name="sizeAllCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1076" type="QCursor" name="sizeBDiagCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1077" type="QCursor" name="sizeFDiagCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1078" type="QCursor" name="sizeHorCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1079" type="QCursor" name="sizeVerCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1080" type="QCursor" name="splitHCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1081" type="QCursor" name="splitVCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1082" type="QCursor" name="upArrowCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1083" type="QCursor" name="waitCursor" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1084" type="QCursor" name="zoomCursor" ownerScope="classifier" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1085" name="KisConfig" >
+ <UML:Operation visibility="protected" xmi.id="1087" type="KisConfig &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1088" value="" type="const KisConfig &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1089" type="" name="KisConfig" />
+ <UML:Operation visibility="protected" xmi.id="1090" type="" name="KisConfig" >
+ <UML:Parameter visibility="private" xmi.id="1091" value="" type="const KisConfig &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1092" type="Q_INT32" name="defImgHeight" />
+ <UML:Operation visibility="public" xmi.id="1093" type="Q_INT32" name="defImgWidth" />
+ <UML:Operation visibility="public" xmi.id="1094" type="Q_INT32" name="defLayerHeight" />
+ <UML:Operation visibility="public" xmi.id="1095" type="Q_INT32" name="defLayerWidth" />
+ <UML:Operation visibility="public" xmi.id="1096" type="Q_INT32" name="maxImgHeight" />
+ <UML:Operation visibility="public" xmi.id="1097" type="Q_INT32" name="maxImgWidth" />
+ <UML:Operation visibility="public" xmi.id="1098" type="Q_INT32" name="maxLayerHeight" />
+ <UML:Operation visibility="public" xmi.id="1099" type="Q_INT32" name="maxLayerWidth" />
+ <UML:Operation visibility="public" xmi.id="1100" type="" name="~KisConfig" />
+ <UML:Attribute visibility="private" xmi.id="1086" value="" type="mutable KConfig *" name="m_cfg" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1101" name="KisCanvasObserver" >
+ <UML:Operation visibility="protected" xmi.id="1102" type="KisCanvasObserver &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1103" value="" type="const KisCanvasObserver &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1104" type="" name="KisCanvasObserver" />
+ <UML:Operation visibility="protected" xmi.id="1105" type="" name="KisCanvasObserver" >
+ <UML:Parameter visibility="private" xmi.id="1106" value="" type="const KisCanvasObserver &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1107" type="virtual void" isAbstract="true" name="update" >
+ <UML:Parameter visibility="private" xmi.id="1108" value="" type="KisCanvasSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1109" type="virtual " name="~KisCanvasObserver" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1110" name="KisFactory" >
+ <UML:Operation visibility="public" xmi.id="1115" type="" name="KisFactory" >
+ <UML:Parameter visibility="private" xmi.id="1116" value="" type="QObject *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="1117" value="" type="const char *" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1118" type="KAboutData *" name="aboutData" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1119" type="virtual KParts :: Part *" name="createPartObject" >
+ <UML:Parameter visibility="private" xmi.id="1120" value="" type="QWidget *" name="tqparentWidget" />
+ <UML:Parameter visibility="private" xmi.id="1121" value="" type="const char *" name="widgetName" />
+ <UML:Parameter visibility="private" xmi.id="1122" value="" type="QObject *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="1123" value="" type="const char *" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1124" value="" type="const char *" name="classname" />
+ <UML:Parameter visibility="private" xmi.id="1125" value="" type="const QStringList &amp;" name="args" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1126" type="KInstance *" name="global" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1127" type="KisPluginServer *" name="pServer" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1128" type="KisResourceServer *" name="rServer" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="1129" type="" name="~KisFactory" />
+ <UML:Attribute visibility="private" xmi.id="1111" value="" type="KAboutData *" name="s_aboutData" />
+ <UML:Attribute visibility="private" xmi.id="1112" value="" type="KInstance *" name="s_global" />
+ <UML:Attribute visibility="private" xmi.id="1113" value="" type="KisPluginServer *" name="s_pserver" />
+ <UML:Attribute visibility="private" xmi.id="1114" value="" type="KisResourceServer *" name="s_rserver" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1130" name="KisChannel" >
+ <UML:Operation visibility="public" xmi.id="1131" type="" name="KisChannel" >
+ <UML:Parameter visibility="private" xmi.id="1132" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1133" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1134" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1135" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1136" value="" type="const KoColor &amp;" name="color" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1137" type="" name="KisChannel" >
+ <UML:Parameter visibility="private" xmi.id="1138" value="" type="const KisChannel &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1139" type="void" name="border" >
+ <UML:Parameter visibility="private" xmi.id="1140" value="" type="Q_INT32" name="xradius" />
+ <UML:Parameter visibility="private" xmi.id="1141" value="" type="Q_INT32" name="yradius" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1142" type="bool" name="bounds" >
+ <UML:Parameter visibility="private" xmi.id="1143" value="" type="QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1144" type="void" name="clear" />
+ <UML:Operation visibility="public" xmi.id="1145" type="KoColor" name="color" />
+ <UML:Operation visibility="public" xmi.id="1146" type="void" name="color" >
+ <UML:Parameter visibility="private" xmi.id="1147" value="" type="KoColor" name="clr" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1148" type="KisChannelSP" name="createMask" >
+ <UML:Parameter visibility="private" xmi.id="1149" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1150" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1151" type="bool" name="empty" />
+ <UML:Operation visibility="public" xmi.id="1152" type="void" name="feather" />
+ <UML:Operation visibility="public" xmi.id="1153" type="void" name="grow" >
+ <UML:Parameter visibility="private" xmi.id="1154" value="" type="Q_INT32" name="xradius" />
+ <UML:Parameter visibility="private" xmi.id="1155" value="" type="Q_INT32" name="yradius" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1156" type="void" name="invert" />
+ <UML:Operation visibility="public" xmi.id="1157" type="QUANTUM" name="opacity" />
+ <UML:Operation visibility="public" xmi.id="1158" type="void" name="opacity" >
+ <UML:Parameter visibility="private" xmi.id="1159" value="" type="QUANTUM" name="val" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1160" type="void" name="shrink" >
+ <UML:Parameter visibility="private" xmi.id="1161" value="" type="Q_INT32" name="xradius" />
+ <UML:Parameter visibility="private" xmi.id="1162" value="" type="Q_INT32" name="yradius" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1163" type="void" name="translate" >
+ <UML:Parameter visibility="private" xmi.id="1164" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1165" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1166" type="Q_INT32" name="value" >
+ <UML:Parameter visibility="private" xmi.id="1167" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1168" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1169" type="virtual " name="~KisChannel" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1170" name="KisCanvasSubject" >
+ <UML:Operation visibility="protected" xmi.id="1171" type="KisCanvasSubject &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1172" value="" type="const KisCanvasSubject &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1173" type="" name="KisCanvasSubject" />
+ <UML:Operation visibility="protected" xmi.id="1174" type="" name="KisCanvasSubject" >
+ <UML:Parameter visibility="private" xmi.id="1175" value="" type="const KisCanvasSubject &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1176" type="virtual void" isAbstract="true" name="attach" >
+ <UML:Parameter visibility="private" xmi.id="1177" value="" type="KisCanvasObserver *" name="observer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1178" type="virtual KoColor" isAbstract="true" name="bgColor" />
+ <UML:Operation visibility="public" xmi.id="1179" type="virtual KisCanvasControllerInterface *" isAbstract="true" name="canvasController" />
+ <UML:Operation visibility="public" xmi.id="1180" type="virtual KisBrush *" isAbstract="true" name="currentBrush" />
+ <UML:Operation visibility="public" xmi.id="1181" type="virtual KisGradient *" isAbstract="true" name="currentGradient" />
+ <UML:Operation visibility="public" xmi.id="1182" type="virtual KisImageSP" isAbstract="true" name="currentImg" />
+ <UML:Operation visibility="public" xmi.id="1183" type="virtual QString" isAbstract="true" name="currentImgName" />
+ <UML:Operation visibility="public" xmi.id="1184" type="virtual KisPattern *" isAbstract="true" name="currentPattern" />
+ <UML:Operation visibility="public" xmi.id="1185" type="virtual void" isAbstract="true" name="detach" >
+ <UML:Parameter visibility="private" xmi.id="1186" value="" type="KisCanvasObserver *" name="observer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1187" type="virtual KoDocument *" isAbstract="true" name="document" />
+ <UML:Operation visibility="public" xmi.id="1188" type="virtual KoColor" isAbstract="true" name="fgColor" />
+ <UML:Operation visibility="public" xmi.id="1189" type="virtual void" isAbstract="true" name="notify" />
+ <UML:Operation visibility="public" xmi.id="1190" type="virtual void" isAbstract="true" name="setBGColor" >
+ <UML:Parameter visibility="private" xmi.id="1191" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1192" type="virtual void" isAbstract="true" name="setFGColor" >
+ <UML:Parameter visibility="private" xmi.id="1193" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1194" type="virtual KisToolControllerInterface *" isAbstract="true" name="toolController" />
+ <UML:Operation visibility="public" xmi.id="1195" type="virtual KisUndoAdapter *" isAbstract="true" name="undoAdapter" />
+ <UML:Operation visibility="public" xmi.id="1196" type="virtual double" isAbstract="true" name="zoomFactor" />
+ <UML:Operation visibility="public" xmi.id="1197" type="virtual " name="~KisCanvasSubject" />
+ </UML:Class>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="1198" name="CompositeOp" >
+ <UML:EnumLiteral visibility="public" xmi.id="1199" name="COMPOSITE_UNDEF" />
+ <UML:EnumLiteral visibility="public" xmi.id="1200" name="COMPOSITE_OVER" />
+ <UML:EnumLiteral visibility="public" xmi.id="1201" name="COMPOSITE_IN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1202" name="COMPOSITE_OUT" />
+ <UML:EnumLiteral visibility="public" xmi.id="1203" name="COMPOSITE_ATOP" />
+ <UML:EnumLiteral visibility="public" xmi.id="1204" name="COMPOSITE_XOR" />
+ <UML:EnumLiteral visibility="public" xmi.id="1205" name="COMPOSITE_PLUS" />
+ <UML:EnumLiteral visibility="public" xmi.id="1206" name="COMPOSITE_MINUS" />
+ <UML:EnumLiteral visibility="public" xmi.id="1207" name="COMPOSITE_ADD" />
+ <UML:EnumLiteral visibility="public" xmi.id="1208" name="COMPOSITE_SUBTRACT" />
+ <UML:EnumLiteral visibility="public" xmi.id="1209" name="COMPOSITE_DIFF" />
+ <UML:EnumLiteral visibility="public" xmi.id="1210" name="COMPOSITE_MULT" />
+ <UML:EnumLiteral visibility="public" xmi.id="1211" name="COMPOSITE_BUMPMAP" />
+ <UML:EnumLiteral visibility="public" xmi.id="1212" name="COMPOSITE_COPY" />
+ <UML:EnumLiteral visibility="public" xmi.id="1213" name="COMPOSITE_COPY_RED" />
+ <UML:EnumLiteral visibility="public" xmi.id="1214" name="COMPOSITE_COPY_GREEN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1215" name="COMPOSITE_COPY_BLUE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1216" name="COMPOSITE_COPY_OPACITY" />
+ <UML:EnumLiteral visibility="public" xmi.id="1217" name="COMPOSITE_CLEAR" />
+ <UML:EnumLiteral visibility="public" xmi.id="1218" name="COMPOSITE_DISSOLVE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1219" name="COMPOSITE_DISPLACE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1220" name="COMPOSITE_MODULATE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1221" name="COMPOSITE_THRESHOLD" />
+ <UML:EnumLiteral visibility="public" xmi.id="1222" name="COMPOSITE_NO" />
+ <UML:EnumLiteral visibility="public" xmi.id="1223" name="COMPOSITE_DARKEN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1224" name="COMPOSITE_LIGHTEN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1225" name="COMPOSITE_HUE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1226" name="COMPOSITE_SATURATE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1227" name="COMPOSITE_COLORIZE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1228" name="COMPOSITE_LUMINIZE" />
+ <UML:EnumLiteral visibility="public" xmi.id="1229" name="COMPOSITE_SCREEN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1230" name="COMPOSITE_OVERLAY" />
+ <UML:EnumLiteral visibility="public" xmi.id="1231" name="COMPOSITE_COPY_CYAN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1232" name="COMPOSITE_COPY_MAGENTA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1233" name="COMPOSITE_COPY_YELLOW" />
+ <UML:EnumLiteral visibility="public" xmi.id="1234" name="COMPOSITE_COPY_BLACK" />
+ <UML:EnumLiteral visibility="public" xmi.id="1235" name="COMPOSITE_NORMAL" />
+ <UML:EnumLiteral visibility="public" xmi.id="1236" name="COMPOSITE_ERASE" />
+ </UML:Enum>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="1237" name="enumImgType" >
+ <UML:EnumLiteral visibility="public" xmi.id="1238" name="IMAGE_TYPE_UNKNOWN" />
+ <UML:EnumLiteral visibility="public" xmi.id="1239" name="IMAGE_TYPE_INDEXED" />
+ <UML:EnumLiteral visibility="public" xmi.id="1240" name="IMAGE_TYPE_INDEXEDA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1241" name="IMAGE_TYPE_GREY" />
+ <UML:EnumLiteral visibility="public" xmi.id="1242" name="IMAGE_TYPE_GREYA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1243" name="IMAGE_TYPE_RGB" />
+ <UML:EnumLiteral visibility="public" xmi.id="1244" name="IMAGE_TYPE_RGBA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1245" name="IMAGE_TYPE_CMYK" />
+ <UML:EnumLiteral visibility="public" xmi.id="1246" name="IMAGE_TYPE_CMYKA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1247" name="IMAGE_TYPE_LAB" />
+ <UML:EnumLiteral visibility="public" xmi.id="1248" name="IMAGE_TYPE_LABA" />
+ <UML:EnumLiteral visibility="public" xmi.id="1249" name="IMAGE_TYPE_YUV" />
+ <UML:EnumLiteral visibility="public" xmi.id="1250" name="IMAGE_TYPE_YUVA" />
+ </UML:Enum>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1251" name="KisGuideSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1252" name="vKisGuideSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1253" name="QUANTUM" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1254" name="CHANNELTYPE" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1255" name="PIXELTYPE" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1256" name="vKisGuideSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="1257" name="vKisGuideSP" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="1259" name="KisImage" >
+ <UML:Operation visibility="protected" xmi.id="1292" type="KisImage &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1293" value="" type="const KisImage &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1294" type="" name="KisImage" >
+ <UML:Parameter visibility="private" xmi.id="1295" value="" type="KisUndoAdapter *" name="undoAdapter" />
+ <UML:Parameter visibility="private" xmi.id="1296" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1297" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1298" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1299" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1300" type="" name="KisImage" >
+ <UML:Parameter visibility="private" xmi.id="1301" value="" type="const KisImage &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1302" type="KisChannelSP" name="activate" >
+ <UML:Parameter visibility="private" xmi.id="1303" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1304" type="KisLayerSP" name="activate" >
+ <UML:Parameter visibility="private" xmi.id="1305" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1306" type="KisChannelSP" name="activateChannel" >
+ <UML:Parameter visibility="private" xmi.id="1307" value="" type="Q_INT32" name="n" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1308" type="KisLayerSP" name="activateLayer" >
+ <UML:Parameter visibility="private" xmi.id="1309" value="" type="Q_INT32" name="n" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1310" type="KisChannelSP" name="activeChannel" />
+ <UML:Operation visibility="public" xmi.id="1311" type="bool" name="activeComponent" >
+ <UML:Parameter visibility="private" xmi.id="1312" value="" type="CHANNELTYPE" name="type" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1313" type="void" name="activeComponent" >
+ <UML:Parameter visibility="private" xmi.id="1314" value="" type="CHANNELTYPE" name="type" />
+ <UML:Parameter visibility="private" xmi.id="1315" value="" type="bool" name="active" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1316" type="KisPaintDeviceSP" name="activeDevice" />
+ <UML:Operation visibility="public" xmi.id="1317" type="const KisLayerSP" name="activeLayer" />
+ <UML:Operation visibility="public" xmi.id="1318" type="bool" name="add" >
+ <UML:Parameter visibility="private" xmi.id="1319" value="" type="KisChannelSP" name="channel" />
+ <UML:Parameter visibility="private" xmi.id="1320" value="" type="Q_INT32" name="position" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1321" type="bool" name="add" >
+ <UML:Parameter visibility="private" xmi.id="1322" value="" type="KisLayerSP" name="layer" />
+ <UML:Parameter visibility="private" xmi.id="1323" value="" type="Q_INT32" name="position" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1324" type="bool" name="alpha" />
+ <UML:Operation visibility="public" xmi.id="1325" type="bool" name="bottom" >
+ <UML:Parameter visibility="private" xmi.id="1326" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1327" type="QRect" name="bounds" />
+ <UML:Operation visibility="public" xmi.id="1328" type="bool" name="boundsLayer" />
+ <UML:Operation visibility="public" xmi.id="1329" type="KisChannelSP" name="channel" >
+ <UML:Parameter visibility="private" xmi.id="1330" value="" type="Q_UINT32" name="npos" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1331" type="KisChannelSP" name="channel" >
+ <UML:Parameter visibility="private" xmi.id="1332" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1333" type="const vKisChannelSP &amp;" name="channels" />
+ <UML:Operation visibility="public" xmi.id="1334" type="KoColor" name="color" />
+ <UML:Operation visibility="public" xmi.id="1335" type="bool" name="colorMap" >
+ <UML:Parameter visibility="private" xmi.id="1336" value="" type="KoColorMap &amp;" name="cm" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1337" type="KisLayerSP" name="correlateLayer" >
+ <UML:Parameter visibility="private" xmi.id="1338" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1339" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1340" type="Q_UINT32" name="depth" />
+ <UML:Operation visibility="public" xmi.id="1341" type="bool" name="empty" />
+ <UML:Operation visibility="public" xmi.id="1342" type="void" name="enableUndo" >
+ <UML:Parameter visibility="private" xmi.id="1343" value="" type="KCommandHistory *" name="history" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1344" type="void" name="expand" >
+ <UML:Parameter visibility="private" xmi.id="1345" value="" type="KisPaintDeviceSP" name="dev" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1346" type="void" name="flush" />
+ <UML:Operation visibility="public" xmi.id="1347" type="KisGuideMgr *" name="guides" />
+ <UML:Operation visibility="public" xmi.id="1348" type="Q_INT32" name="height" />
+ <UML:Operation visibility="public" xmi.id="1349" type="enumImgType" name="imgType" />
+ <UML:Operation visibility="public" xmi.id="1350" type="enumImgType" name="imgTypeWithAlpha" />
+ <UML:Operation visibility="public" xmi.id="1351" type="Q_INT32" name="index" >
+ <UML:Parameter visibility="private" xmi.id="1352" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1353" type="Q_INT32" name="index" >
+ <UML:Parameter visibility="private" xmi.id="1354" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1355" type="void" name="init" >
+ <UML:Parameter visibility="private" xmi.id="1356" value="" type="KisUndoAdapter *" name="adapter" />
+ <UML:Parameter visibility="private" xmi.id="1357" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1358" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1359" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1360" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1361" type="virtual void" name="tqinvalidate" />
+ <UML:Operation visibility="public" xmi.id="1362" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1363" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1364" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1365" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1366" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1367" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1368" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1369" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1370" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1371" type="KisLayerSP" name="layer" >
+ <UML:Parameter visibility="private" xmi.id="1372" value="" type="Q_UINT32" name="npos" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1373" type="KisLayerSP" name="layer" >
+ <UML:Parameter visibility="private" xmi.id="1374" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1375" type="const vKisLayerSP &amp;" name="layers" />
+ <UML:Operation visibility="public" xmi.id="1376" type="bool" name="lower" >
+ <UML:Parameter visibility="private" xmi.id="1377" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1378" type="bool" name="lower" >
+ <UML:Parameter visibility="private" xmi.id="1379" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1380" type="KisChannelSP" name="tqmask" />
+ <UML:Operation visibility="public" xmi.id="1381" type=TQSTRING_OBJECT_NAME_STRING name="name" />
+ <UML:Operation visibility="public" xmi.id="1382" type="enumImgType" name="nativeImgType" />
+ <UML:Operation visibility="public" xmi.id="1383" type="Q_INT32" name="nchannels" />
+ <UML:Operation visibility="public" xmi.id="1384" type=TQSTRING_OBJECT_NAME_STRING name="nextLayerName" />
+ <UML:Operation visibility="public" xmi.id="1385" type="Q_INT32" name="nlayers" />
+ <UML:Operation visibility="public" xmi.id="1386" type="void" name="notify" />
+ <UML:Operation visibility="public" xmi.id="1387" type="void" name="notify" >
+ <UML:Parameter visibility="private" xmi.id="1388" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1389" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1390" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1391" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1392" type="void" name="notify" >
+ <UML:Parameter visibility="private" xmi.id="1393" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1394" type="PIXELTYPE" name="pixelFromChannel" >
+ <UML:Parameter visibility="private" xmi.id="1395" value="" type="CHANNELTYPE" name="type" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1396" type="bool" name="pos" >
+ <UML:Parameter visibility="private" xmi.id="1397" value="" type="KisChannelSP" name="channel" />
+ <UML:Parameter visibility="private" xmi.id="1398" value="" type="Q_INT32" name="position" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1399" type="bool" name="pos" >
+ <UML:Parameter visibility="private" xmi.id="1400" value="" type="KisLayerSP" name="layer" />
+ <UML:Parameter visibility="private" xmi.id="1401" value="" type="Q_INT32" name="position" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1402" type="bool" name="raise" >
+ <UML:Parameter visibility="private" xmi.id="1403" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1404" type="bool" name="raise" >
+ <UML:Parameter visibility="private" xmi.id="1405" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1406" type="void" name="resize" >
+ <UML:Parameter visibility="private" xmi.id="1407" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1408" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1409" type="void" name="resize" >
+ <UML:Parameter visibility="private" xmi.id="1410" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1411" type="void" name="resolution" >
+ <UML:Parameter visibility="private" xmi.id="1412" value="" type="double *" name="xres" />
+ <UML:Parameter visibility="private" xmi.id="1413" value="" type="double *" name="yres" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1414" type="void" name="resolution" >
+ <UML:Parameter visibility="private" xmi.id="1415" value="" type="double" name="xres" />
+ <UML:Parameter visibility="private" xmi.id="1416" value="" type="double" name="yres" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1417" type="void" name="rm" >
+ <UML:Parameter visibility="private" xmi.id="1418" value="" type="KisChannelSP" name="channel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1419" type="void" name="rm" >
+ <UML:Parameter visibility="private" xmi.id="1420" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1421" type="KisSelectionSP" name="selection" />
+ <UML:Operation visibility="public" xmi.id="1422" type="void" name="setName" >
+ <UML:Parameter visibility="private" xmi.id="1423" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1424" type="void" name="setSelection" >
+ <UML:Parameter visibility="private" xmi.id="1425" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1426" type="KisTileMgrSP" name="shadow" />
+ <UML:Operation visibility="public" xmi.id="1427" type="virtual Q_INT32" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="1428" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="1429" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1430" type="virtual KisTileMgrSP" name="tiles" />
+ <UML:Operation visibility="public" xmi.id="1431" type="bool" name="top" >
+ <UML:Parameter visibility="private" xmi.id="1432" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1433" type="KoColor" name="transformColor" />
+ <UML:Operation visibility="public" xmi.id="1434" type="KisUndoAdapter *" name="undoAdapter" />
+ <UML:Operation visibility="public" xmi.id="1435" type="void" name="unit" >
+ <UML:Parameter visibility="private" xmi.id="1436" value="" type="const KoUnit :: Unit &amp;" name="u" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1437" type="KisChannelSP" name="unsetActiveChannel" />
+ <UML:Operation visibility="public" xmi.id="1438" type="void" name="unsetSelection" >
+ <UML:Parameter visibility="private" xmi.id="1439" value="" type="bool" name="commit" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1440" type="KURL" name="uri" />
+ <UML:Operation visibility="public" xmi.id="1441" type="void" name="uri" >
+ <UML:Parameter visibility="private" xmi.id="1442" value="" type="const KURL &amp;" name="uri" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1443" type="virtual void" name="validate" >
+ <UML:Parameter visibility="private" xmi.id="1444" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1445" type="bool" name="visibleComponent" >
+ <UML:Parameter visibility="private" xmi.id="1446" value="" type="CHANNELTYPE" name="pixel" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1447" type="void" name="visibleComponent" >
+ <UML:Parameter visibility="private" xmi.id="1448" value="" type="CHANNELTYPE" name="pixel" />
+ <UML:Parameter visibility="private" xmi.id="1449" value="" type="bool" name="active" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1450" type="Q_INT32" name="width" />
+ <UML:Operation visibility="public" xmi.id="1451" type="virtual " name="~KisImage" />
+ <UML:Attribute visibility="private" xmi.id="1260" value="" type="QBitArray" name="m_active" />
+ <UML:Attribute visibility="private" xmi.id="1261" value="" type="KisChannelSP" name="m_activeChannel" />
+ <UML:Attribute visibility="private" xmi.id="1262" value="" type="KisLayerSP" name="m_activeLayer" />
+ <UML:Attribute visibility="private" xmi.id="1263" value="" type="KisUndoAdapter *" name="m_adapter" />
+ <UML:Attribute visibility="private" xmi.id="1264" value="" type="bool" name="m_alpha" />
+ <UML:Attribute visibility="private" xmi.id="1265" value="" type="KisBackgroundSP" name="m_bkg" />
+ <UML:Attribute visibility="private" xmi.id="1266" value="" type="vKisChannelSP" name="m_channels" />
+ <UML:Attribute visibility="private" xmi.id="1267" value="" type="KoColorMap" name="m_clrMap" />
+ <UML:Attribute visibility="private" xmi.id="1268" value="" type="Q_UINT32" name="m_depth" />
+ <UML:Attribute visibility="private" xmi.id="1269" value="" type="bool" name="m_dirty" />
+ <UML:Attribute visibility="private" xmi.id="1271" value="" type="Q_INT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="1272" value="" type="vKisLayerSP" name="m_layerStack" />
+ <UML:Attribute visibility="private" xmi.id="1273" value="" type="vKisLayerSP" name="m_layers" />
+ <UML:Attribute visibility="private" xmi.id="1274" value="" type="KoColor" name="m_tqmaskClr" />
+ <UML:Attribute visibility="private" xmi.id="1275" value="" type="bool" name="m_tqmaskEnabled" />
+ <UML:Attribute visibility="private" xmi.id="1276" value="" type="bool" name="m_tqmaskInverted" />
+ <UML:Attribute visibility="private" xmi.id="1277" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="1278" value="" type="KisNameServer *" name="m_nserver" />
+ <UML:Attribute visibility="private" xmi.id="1279" value="" type="Q_INT32" name="m_ntileCols" />
+ <UML:Attribute visibility="private" xmi.id="1280" value="" type="Q_INT32" name="m_ntileRows" />
+ <UML:Attribute visibility="private" xmi.id="1281" value="" type="KisLayerSP" name="m_projection" />
+ <UML:Attribute visibility="private" xmi.id="1282" value="" type="KisSelectionSP" name="m_selection" />
+ <UML:Attribute visibility="private" xmi.id="1283" value="" type="KisChannelSP" name="m_selectionMask" />
+ <UML:Attribute visibility="private" xmi.id="1284" value="" type="KisTileMgrSP" name="m_shadow" />
+ <UML:Attribute visibility="private" xmi.id="1286" value="" type="KCommandHistory *" name="m_undoHistory" />
+ <UML:Attribute visibility="private" xmi.id="1287" value="" type="KURL" name="m_uri" />
+ <UML:Attribute visibility="private" xmi.id="1288" value="" type="QBitArray" name="m_visible" />
+ <UML:Attribute visibility="private" xmi.id="1289" value="" type="Q_INT32" name="m_width" />
+ <UML:Attribute visibility="private" xmi.id="1290" value="" type="double" name="m_xres" />
+ <UML:Attribute visibility="private" xmi.id="1291" value="" type="double" name="m_yres" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1453" name="KisPaintDevice" >
+ <UML:Operation visibility="protected" xmi.id="1474" type="KisPaintDevice &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1475" value="" type="const KisPaintDevice &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1476" type="" name="KisPaintDevice" >
+ <UML:Parameter visibility="private" xmi.id="1477" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1478" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1479" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1480" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1481" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1482" type="" name="KisPaintDevice" >
+ <UML:Parameter visibility="private" xmi.id="1483" value="" type="KisTileMgrSP" name="tm" />
+ <UML:Parameter visibility="private" xmi.id="1484" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1485" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1486" type="" name="KisPaintDevice" >
+ <UML:Parameter visibility="private" xmi.id="1487" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1488" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1489" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1490" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1491" type="" name="KisPaintDevice" >
+ <UML:Parameter visibility="private" xmi.id="1492" value="" type="const KisPaintDevice &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1493" type="bool" name="alpha" />
+ <UML:Operation comment="Reimplemented by KisSelection; here it does nothing useful, but it
+cannot be abstract, because otherwise this class would be abstract." visibility="public" xmi.id="1494" type="virtual void" name="anchor" />
+ <UML:Operation visibility="public" xmi.id="1495" type="QRect" name="bounds" />
+ <UML:Operation visibility="public" xmi.id="1496" type="QRect" name="clip" />
+ <UML:Operation visibility="public" xmi.id="1497" type="void" name="clip" >
+ <UML:Parameter visibility="private" xmi.id="1498" value="" type="Q_INT32 *" name="offx" />
+ <UML:Parameter visibility="private" xmi.id="1499" value="" type="Q_INT32 *" name="offy" />
+ <UML:Parameter visibility="private" xmi.id="1500" value="" type="Q_INT32 *" name="offw" />
+ <UML:Parameter visibility="private" xmi.id="1501" value="" type="Q_INT32 *" name="offh" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1502" type="bool" name="cmap" >
+ <UML:Parameter visibility="private" xmi.id="1503" value="" type="KoColorMap &amp;" name="cm" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1504" type="KoColor" name="colorAt" />
+ <UML:Operation visibility="public" xmi.id="1505" type="CompositeOp" name="compositeOp" />
+ <UML:Operation visibility="public" xmi.id="1506" type="virtual void" name="configure" >
+ <UML:Parameter visibility="private" xmi.id="1507" value="" type="KisImageSP" name="image" />
+ <UML:Parameter visibility="private" xmi.id="1508" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1509" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1510" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1511" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1512" value="" type="CompositeOp" name="compositeOp" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1513" type="bool" name="tqcontains" >
+ <UML:Parameter visibility="private" xmi.id="1514" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1515" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1516" type="bool" name="tqcontains" >
+ <UML:Parameter visibility="private" xmi.id="1517" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1518" type="virtual const KisTileMgrSP" name="data" />
+ <UML:Operation visibility="public" xmi.id="1519" type="void" name="data" >
+ <UML:Parameter visibility="private" xmi.id="1520" value="" type="KisTileMgrSP" name="mgr" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1521" type="void" name="expand" >
+ <UML:Parameter visibility="private" xmi.id="1522" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1523" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1524" type="void" name="expand" >
+ <UML:Parameter visibility="private" xmi.id="1525" value="" type="const QSize &amp;" name="size" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1526" type="Q_INT32" name="height" />
+ <UML:Operation visibility="protected" xmi.id="1527" type="void" name="height" >
+ <UML:Parameter visibility="private" xmi.id="1528" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1529" type="const KisImageSP" name="image" />
+ <UML:Operation visibility="protected" xmi.id="1530" type="void" name="init" />
+ <UML:Operation visibility="public" xmi.id="1531" type="virtual void" name="tqinvalidate" />
+ <UML:Operation visibility="public" xmi.id="1532" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1533" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1534" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1535" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1536" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1537" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1538" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1539" type="virtual void" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="1540" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1541" type="void" name="tqmaskBounds" >
+ <UML:Parameter visibility="private" xmi.id="1542" value="" type="QRect *" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1543" type="void" name="tqmaskBounds" >
+ <UML:Parameter visibility="private" xmi.id="1544" value="" type="Q_INT32 *" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="1545" value="" type="Q_INT32 *" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="1546" value="" type="Q_INT32 *" name="x2" />
+ <UML:Parameter visibility="private" xmi.id="1547" value="" type="Q_INT32 *" name="y2" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1548" type="virtual void" name="move" >
+ <UML:Parameter visibility="private" xmi.id="1549" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1550" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1551" type="virtual void" name="move" >
+ <UML:Parameter visibility="private" xmi.id="1552" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1553" type=TQSTRING_OBJECT_NAME_STRING name="name" />
+ <UML:Operation visibility="public" xmi.id="1554" type="void" name="offsetBy" >
+ <UML:Parameter visibility="private" xmi.id="1555" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1556" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1557" type="bool" name="pixel" >
+ <UML:Parameter visibility="private" xmi.id="1558" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1559" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1560" value="" type="KoColor *" name="c" />
+ <UML:Parameter visibility="private" xmi.id="1561" value="" type="QUANTUM *" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1562" type="Q_INT32" name="quantumSize" />
+ <UML:Operation visibility="public" xmi.id="1563" type="Q_INT32" name="quantumSizeWithAlpha" />
+ <UML:Operation visibility="public" xmi.id="1564" type="virtual bool" name="read" >
+ <UML:Parameter visibility="private" xmi.id="1565" value="" type="KoStore *" name="store" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1566" type="void" name="resize" />
+ <UML:Operation visibility="public" xmi.id="1567" type="void" name="resize" >
+ <UML:Parameter visibility="private" xmi.id="1568" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1569" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1570" type="void" name="resize" >
+ <UML:Parameter visibility="private" xmi.id="1571" value="" type="const QSize &amp;" name="size" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1572" type="void" name="setClip" >
+ <UML:Parameter visibility="private" xmi.id="1573" value="" type="Q_INT32" name="offx" />
+ <UML:Parameter visibility="private" xmi.id="1574" value="" type="Q_INT32" name="offy" />
+ <UML:Parameter visibility="private" xmi.id="1575" value="" type="Q_INT32" name="offw" />
+ <UML:Parameter visibility="private" xmi.id="1576" value="" type="Q_INT32" name="offh" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1577" type="void" name="setCompositeOp" >
+ <UML:Parameter visibility="private" xmi.id="1578" value="" type="CompositeOp" name="compositeOp" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1579" type="void" name="setImage" >
+ <UML:Parameter visibility="private" xmi.id="1580" value="" type="KisImageSP" name="image" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1581" type="void" name="setName" >
+ <UML:Parameter visibility="private" xmi.id="1582" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1583" type="bool" name="setPixel" >
+ <UML:Parameter visibility="private" xmi.id="1584" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1585" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1586" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="1587" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1588" type="void" name="setX" >
+ <UML:Parameter visibility="private" xmi.id="1589" value="" type="Q_INT32" name="x" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1590" type="void" name="setY" >
+ <UML:Parameter visibility="private" xmi.id="1591" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1592" type="const KisTileMgrSP" name="shadow" />
+ <UML:Operation visibility="public" xmi.id="1593" type="virtual bool" name="shouldDrawBorder" />
+ <UML:Operation visibility="public" xmi.id="1594" type="virtual Q_INT32" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="1595" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="1596" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1597" type="virtual KisTileMgrSP" name="tiles" />
+ <UML:Operation visibility="public" xmi.id="1598" type="enumImgType" name="type" />
+ <UML:Operation visibility="public" xmi.id="1599" type="enumImgType" name="typeWithAlpha" />
+ <UML:Operation visibility="public" xmi.id="1600" type="enumImgType" name="typeWithoutAlpha" />
+ <UML:Operation visibility="public" xmi.id="1601" type="virtual void" name="update" />
+ <UML:Operation visibility="public" xmi.id="1602" type="virtual void" name="update" >
+ <UML:Parameter visibility="private" xmi.id="1603" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1604" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1605" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1606" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1607" type="virtual void" name="validate" >
+ <UML:Parameter visibility="private" xmi.id="1608" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1609" type="virtual const bool" name="visible" />
+ <UML:Operation visibility="public" xmi.id="1610" type="virtual void" name="visible" >
+ <UML:Parameter visibility="private" xmi.id="1611" value="" type="bool" name="v" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1612" type="Q_INT32" name="width" />
+ <UML:Operation visibility="protected" xmi.id="1613" type="void" name="width" >
+ <UML:Parameter visibility="private" xmi.id="1614" value="" type="Q_INT32" name="w" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1615" type="virtual bool" name="write" >
+ <UML:Parameter visibility="private" xmi.id="1616" value="" type="KoStore *" name="store" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1617" type="Q_INT32" name="x" />
+ <UML:Operation visibility="public" xmi.id="1618" type="Q_INT32" name="y" />
+ <UML:Operation visibility="public" xmi.id="1619" type="virtual " name="~KisPaintDevice" />
+ <UML:Attribute visibility="private" xmi.id="1454" value="" type="bool" name="m_alpha" />
+ <UML:Attribute visibility="private" xmi.id="1456" value="" type="Q_INT32" name="m_depth" />
+ <UML:Attribute visibility="private" xmi.id="1457" value="" type="Q_INT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="1459" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="1460" value="" type="Q_INT32" name="m_offH" />
+ <UML:Attribute visibility="private" xmi.id="1461" value="" type="Q_INT32" name="m_offW" />
+ <UML:Attribute visibility="private" xmi.id="1462" value="" type="Q_INT32" name="m_offX" />
+ <UML:Attribute visibility="private" xmi.id="1463" value="" type="Q_INT32" name="m_offY" />
+ <UML:Attribute visibility="private" xmi.id="1464" value="" type="KisImageSP" name="m_owner" />
+ <UML:Attribute visibility="private" xmi.id="1465" value="" type=TQPIXMAP_OBJECT_NAME_STRING name="m_projection" />
+ <UML:Attribute visibility="private" xmi.id="1466" value="" type="bool" name="m_projectionValid" />
+ <UML:Attribute visibility="private" xmi.id="1467" value="" type="Q_INT32" name="m_quantumSize" />
+ <UML:Attribute visibility="private" xmi.id="1468" value="" type="KisTileMgrSP" name="m_shadow" />
+ <UML:Attribute visibility="private" xmi.id="1469" value="" type="KisTileMgrSP" name="m_tiles" />
+ <UML:Attribute visibility="private" xmi.id="1470" value="" type="bool" name="m_visible" />
+ <UML:Attribute visibility="private" xmi.id="1471" value="" type="Q_INT32" name="m_width" />
+ <UML:Attribute visibility="private" xmi.id="1472" value="" type="Q_INT32" name="m_x" />
+ <UML:Attribute visibility="private" xmi.id="1473" value="" type="Q_INT32" name="m_y" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1620" name="KisLayer" >
+ <UML:Operation visibility="public" xmi.id="1628" type="" name="KisLayer" >
+ <UML:Parameter visibility="private" xmi.id="1629" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1630" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1631" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1632" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1633" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1634" type="" name="KisLayer" >
+ <UML:Parameter visibility="private" xmi.id="1635" value="" type="KisTileMgrSP" name="tiles" />
+ <UML:Parameter visibility="private" xmi.id="1636" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1637" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1638" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1639" type="" name="KisLayer" >
+ <UML:Parameter visibility="private" xmi.id="1640" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1641" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1642" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1643" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1644" type="" name="KisLayer" >
+ <UML:Parameter visibility="private" xmi.id="1645" value="" type="const KisLayer &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1646" type="void" name="addAlpha" />
+ <UML:Operation visibility="public" xmi.id="1647" type="KisMaskSP" name="addMask" >
+ <UML:Parameter visibility="private" xmi.id="1648" value="" type="KisMaskSP" name="tqmask" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1649" type="void" name="applyMask" >
+ <UML:Parameter visibility="private" xmi.id="1650" value="" type="Q_INT32" name="mode" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1651" type="KisMaskSP" name="createMask" >
+ <UML:Parameter visibility="private" xmi.id="1652" value="" type="Q_INT32" name="tqmaskType" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1653" type="bool" name="linked" />
+ <UML:Operation visibility="public" xmi.id="1654" type="void" name="linked" >
+ <UML:Parameter visibility="private" xmi.id="1655" value="" type="bool" name="l" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1656" type="KisMaskSP" name="tqmask" />
+ <UML:Operation visibility="public" xmi.id="1657" type="QUANTUM" name="opacity" />
+ <UML:Operation visibility="public" xmi.id="1658" type="void" name="setOpacity" >
+ <UML:Parameter visibility="private" xmi.id="1659" value="" type="QUANTUM" name="val" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1660" type="void" name="translate" >
+ <UML:Parameter visibility="private" xmi.id="1661" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1662" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1663" type="virtual const bool" name="visible" />
+ <UML:Operation visibility="public" xmi.id="1664" type="virtual void" name="visible" >
+ <UML:Parameter visibility="private" xmi.id="1665" value="" type="bool" name="v" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1666" type="virtual " name="~KisLayer" />
+ <UML:Attribute visibility="private" xmi.id="1621" value="" type="Q_INT32" name="m_dx" />
+ <UML:Attribute visibility="private" xmi.id="1622" value="" type="Q_INT32" name="m_dy" />
+ <UML:Attribute visibility="private" xmi.id="1623" value="" type="bool" name="m_initial" />
+ <UML:Attribute visibility="private" xmi.id="1624" value="" type="bool" name="m_linked" />
+ <UML:Attribute visibility="private" xmi.id="1625" value="" type="KisMaskSP" name="m_tqmask" />
+ <UML:Attribute visibility="private" xmi.id="1626" value="" type="QUANTUM" name="m_opacity" />
+ <UML:Attribute visibility="private" xmi.id="1627" value="" type="bool" name="m_preserveTransparency" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1667" name="KisNameServer" >
+ <UML:Operation visibility="public" xmi.id="1670" type="" name="KisNameServer" >
+ <UML:Parameter visibility="private" xmi.id="1671" value="" type="const QString &amp;" name="prefix" />
+ <UML:Parameter visibility="private" xmi.id="1672" value="" type="Q_INT32" name="seed" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1673" type="Q_INT32" name="currentSeed" />
+ <UML:Operation visibility="public" xmi.id="1674" type=TQSTRING_OBJECT_NAME_STRING name="name" />
+ <UML:Operation visibility="public" xmi.id="1675" type="Q_INT32" name="number" />
+ <UML:Operation visibility="public" xmi.id="1676" type="" name="~KisNameServer" />
+ <UML:Attribute visibility="private" xmi.id="1668" value="" type="Q_INT32" name="m_generator" />
+ <UML:Attribute visibility="private" xmi.id="1669" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_prefix" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1677" name="KisMemento" >
+ <UML:Operation visibility="public" xmi.id="1678" type="virtual " name="~KisMemento" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1679" name="KisPaintDeviceVisitor" >
+ <UML:Operation visibility="public" xmi.id="1680" type="bool" name="()" >
+ <UML:Parameter visibility="private" xmi.id="1681" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1682" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1683" type="bool" name="()" >
+ <UML:Parameter visibility="private" xmi.id="1684" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1685" value="" type="KisPaintDeviceSP" name="dev" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1686" type="bool" name="()" >
+ <UML:Parameter visibility="private" xmi.id="1687" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1688" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1689" type="bool" name="()" >
+ <UML:Parameter visibility="private" xmi.id="1690" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1691" value="" type="vKisLayerSP &amp;" name="layers" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1692" type="bool" name="()" >
+ <UML:Parameter visibility="private" xmi.id="1693" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1694" value="" type="vKisPaintDeviceSP &amp;" name="devs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1695" type="" name="KisPaintDeviceVisitor" />
+ <UML:Operation visibility="public" xmi.id="1696" type="virtual bool" isAbstract="true" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="1697" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1698" value="" type="KisLayerSP" name="layer" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1699" type="virtual bool" isAbstract="true" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="1700" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1701" value="" type="KisPaintDeviceSP" name="dev" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1702" type="virtual bool" isAbstract="true" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="1703" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1704" value="" type="KisSelectionSP" name="selection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1705" type="virtual bool" isAbstract="true" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="1706" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1707" value="" type="vKisLayerSP &amp;" name="layers" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1708" type="virtual bool" isAbstract="true" name="visit" >
+ <UML:Parameter visibility="private" xmi.id="1709" value="" type="KisPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="1710" value="" type="vKisPaintDeviceSP &amp;" name="devs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1711" type="virtual " name="~KisPaintDeviceVisitor" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1712" name="KisMementoOriginatorInterface" >
+ <UML:Operation visibility="protected" xmi.id="1713" type="KisMementoOriginatorInterface &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1714" value="" type="const KisMementoOriginatorInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1715" type="" name="KisMementoOriginatorInterface" />
+ <UML:Operation visibility="protected" xmi.id="1716" type="" name="KisMementoOriginatorInterface" >
+ <UML:Parameter visibility="private" xmi.id="1717" value="" type="const KisMementoOriginatorInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1718" type="virtual void" isAbstract="true" name="restore" >
+ <UML:Parameter visibility="private" xmi.id="1719" value="" type="KisMementoSP" name="memento" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1720" type="virtual KisMementoSP" isAbstract="true" name="save" />
+ <UML:Operation visibility="public" xmi.id="1721" type="virtual " name="~KisMementoOriginatorInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1722" name="KisMask" >
+ <UML:Operation visibility="public" xmi.id="1723" type="" name="KisMask" >
+ <UML:Parameter visibility="private" xmi.id="1724" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1725" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1726" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1727" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1728" value="" type="const KoColor &amp;" name="color" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1729" type="" name="KisMask" >
+ <UML:Parameter visibility="private" xmi.id="1730" value="" type="const KisMask &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1731" type="Q_INT32" name="apply" />
+ <UML:Operation visibility="public" xmi.id="1732" type="void" name="apply" >
+ <UML:Parameter visibility="private" xmi.id="1733" value="" type="Q_INT32" name="tqmask" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1734" type="bool" name="edit" />
+ <UML:Operation visibility="public" xmi.id="1735" type="void" name="edit" >
+ <UML:Parameter visibility="private" xmi.id="1736" value="" type="bool" name="val" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1737" type="KisLayerSP" name="layer" />
+ <UML:Operation visibility="public" xmi.id="1738" type="void" name="layer" >
+ <UML:Parameter visibility="private" xmi.id="1739" value="" type="KisLayerSP" name="owner" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1740" type="virtual " name="~KisMask" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1741" name="KisImagePipeBrush" >
+ <UML:Operation visibility="public" xmi.id="1750" type="" name="KisImagePipeBrush" >
+ <UML:Parameter visibility="private" xmi.id="1751" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1752" type="virtual enumBrushType" name="brushType" />
+ <UML:Operation visibility="public" xmi.id="1753" type=TQPOINT_OBJECT_NAME_STRING name="hotSpot" />
+ <UML:Operation comment="@return the next image in the pipe." visibility="public" xmi.id="1754" type="virtual QImage" name="img" />
+ <UML:Operation visibility="public" xmi.id="1755" type="virtual bool" name="loadAsync" />
+ <UML:Operation comment="@return the next tqmask in the pipe." visibility="public" xmi.id="1756" type="virtual KisAlphaMask *" name="tqmask" >
+ <UML:Parameter visibility="private" xmi.id="1757" value="" type="Q_INT32" name="scale" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1758" type="virtual bool" name="saveAsync" />
+ <UML:Operation visibility="public" xmi.id="1759" type="void" name="setHotSpot" >
+ <UML:Parameter visibility="private" xmi.id="1760" value="" type=TQPOINT_OBJECT_NAME_STRING />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1761" type="void" name="setParasite" >
+ <UML:Parameter visibility="private" xmi.id="1762" value="" type="const QString &amp;" name="parasite" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1763" type="virtual " name="~KisImagePipeBrush" />
+ <UML:Attribute visibility="private" xmi.id="1743" value="" type="QPtrList" name="m_brushes" />
+ <UML:Attribute visibility="private" xmi.id="1744" value="" type="Q_UINT32" name="m_currentBrush" />
+ <UML:Attribute visibility="private" xmi.id="1745" value="" type="QValueVector" name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="1746" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_hotSpot" />
+ <UML:Attribute visibility="private" xmi.id="1747" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="1748" value="" type="Q_UINT32" name="m_numOfBrushes" />
+ <UML:Attribute visibility="private" xmi.id="1749" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_parasite" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1767" name="KisPainter" >
+ <UML:Operation visibility="protected" xmi.id="1784" type="KisPainter &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="1785" value="" type="const KisPainter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1786" type="" name="KisPainter" />
+ <UML:Operation visibility="public" xmi.id="1787" type="" name="KisPainter" >
+ <UML:Parameter visibility="private" xmi.id="1788" value="" type="KisPaintDeviceSP" name="device" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1789" type="" name="KisPainter" >
+ <UML:Parameter visibility="private" xmi.id="1790" value="" type="const KisPainter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1791" type="void" name="begin" >
+ <UML:Parameter visibility="private" xmi.id="1792" value="" type="KisPaintDeviceSP" name="device" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1793" type="void" name="beginTransaction" >
+ <UML:Parameter visibility="private" xmi.id="1794" value="" type="const QString &amp;" name="customName" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1795" type="void" name="bitBlt" >
+ <UML:Parameter visibility="private" xmi.id="1796" value="" type="Q_INT32" name="dx" />
+ <UML:Parameter visibility="private" xmi.id="1797" value="" type="Q_INT32" name="dy" />
+ <UML:Parameter visibility="private" xmi.id="1798" value="" type="CompositeOp" name="op" />
+ <UML:Parameter visibility="private" xmi.id="1799" value="" type="KisPaintDeviceSP" name="src" />
+ <UML:Parameter visibility="private" xmi.id="1800" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="1801" value="" type="Q_INT32" name="sx" />
+ <UML:Parameter visibility="private" xmi.id="1802" value="" type="Q_INT32" name="sy" />
+ <UML:Parameter visibility="private" xmi.id="1803" value="" type="Q_INT32" name="sw" />
+ <UML:Parameter visibility="private" xmi.id="1804" value="" type="Q_INT32" name="sh" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1805" type="void" name="bitBlt" >
+ <UML:Parameter visibility="private" xmi.id="1806" value="" type="Q_INT32" name="dx" />
+ <UML:Parameter visibility="private" xmi.id="1807" value="" type="Q_INT32" name="dy" />
+ <UML:Parameter visibility="private" xmi.id="1808" value="" type="CompositeOp" name="op" />
+ <UML:Parameter visibility="private" xmi.id="1809" value="" type="KisPaintDeviceSP" name="src" />
+ <UML:Parameter visibility="private" xmi.id="1810" value="" type="Q_INT32" name="sx" />
+ <UML:Parameter visibility="private" xmi.id="1811" value="" type="Q_INT32" name="sy" />
+ <UML:Parameter visibility="private" xmi.id="1812" value="" type="Q_INT32" name="sw" />
+ <UML:Parameter visibility="private" xmi.id="1813" value="" type="Q_INT32" name="sh" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1814" type="void" name="computeDab" >
+ <UML:Parameter visibility="private" xmi.id="1815" value="" type="KisAlphaMask *" name="tqmask" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1816" type="KisPaintDeviceSP" name="device" />
+ <UML:Operation visibility="public" xmi.id="1817" type="QRect" name="dirtyRect" />
+ <UML:Operation visibility="public" xmi.id="1818" type="KCommand *" name="end" />
+ <UML:Operation visibility="public" xmi.id="1819" type="KCommand *" name="endTransaction" />
+ <UML:Operation visibility="public" xmi.id="1820" type="void" name="eraseAt" >
+ <UML:Parameter visibility="private" xmi.id="1821" value="" type="const QPoint &amp;" name="pos" />
+ <UML:Parameter visibility="private" xmi.id="1822" value="" type="const Q_INT32" name="pressure" />
+ <UML:Parameter visibility="private" xmi.id="1823" value="" type="const Q_INT32" />
+ <UML:Parameter visibility="private" xmi.id="1824" value="" type="const Q_INT32" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1825" type="float" name="eraseLine" >
+ <UML:Parameter visibility="private" xmi.id="1826" value="" type="const QPoint &amp;" name="pos1" />
+ <UML:Parameter visibility="private" xmi.id="1827" value="" type="const QPoint &amp;" name="pos2" />
+ <UML:Parameter visibility="private" xmi.id="1828" value="" type="const Q_INT32" name="pressure" />
+ <UML:Parameter visibility="private" xmi.id="1829" value="" type="const Q_INT32" name="xTilt" />
+ <UML:Parameter visibility="private" xmi.id="1830" value="" type="const Q_INT32" name="yTilt" />
+ <UML:Parameter visibility="private" xmi.id="1831" value="" type="const float" name="savedDist" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1832" type="void" name="eraseRect" >
+ <UML:Parameter visibility="private" xmi.id="1833" value="" type="Q_INT32" name="x1" />
+ <UML:Parameter visibility="private" xmi.id="1834" value="" type="Q_INT32" name="y1" />
+ <UML:Parameter visibility="private" xmi.id="1835" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1836" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1837" type="void" name="eraseRect" >
+ <UML:Parameter visibility="private" xmi.id="1838" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1839" type="void" name="fillRect" >
+ <UML:Parameter visibility="private" xmi.id="1840" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1841" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1842" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1843" value="" type="Q_INT32" name="h" />
+ <UML:Parameter visibility="private" xmi.id="1844" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1845" type="void" name="fillRect" >
+ <UML:Parameter visibility="private" xmi.id="1846" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1847" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="1848" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="1849" value="" type="Q_INT32" name="h" />
+ <UML:Parameter visibility="private" xmi.id="1850" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="1851" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1852" type="void" name="fillRect" >
+ <UML:Parameter visibility="private" xmi.id="1853" value="" type="const QRect &amp;" name="rc" />
+ <UML:Parameter visibility="private" xmi.id="1854" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1855" type="void" name="fillRect" >
+ <UML:Parameter visibility="private" xmi.id="1856" value="" type="const QRect &amp;" name="rc" />
+ <UML:Parameter visibility="private" xmi.id="1857" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="1858" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1859" type="void" name="paintAt" >
+ <UML:Parameter visibility="private" xmi.id="1860" value="" type="const QPoint &amp;" name="pos" />
+ <UML:Parameter visibility="private" xmi.id="1861" value="" type="const Q_INT32" name="pressure" />
+ <UML:Parameter visibility="private" xmi.id="1862" value="" type="const Q_INT32" />
+ <UML:Parameter visibility="private" xmi.id="1863" value="" type="const Q_INT32" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1864" type="float" name="paintLine" >
+ <UML:Parameter visibility="private" xmi.id="1865" value="" type="const QPoint &amp;" name="pos1" />
+ <UML:Parameter visibility="private" xmi.id="1866" value="" type="const QPoint &amp;" name="pos2" />
+ <UML:Parameter visibility="private" xmi.id="1867" value="" type="const Q_INT32" name="pressure" />
+ <UML:Parameter visibility="private" xmi.id="1868" value="" type="const Q_INT32" name="xTilt" />
+ <UML:Parameter visibility="private" xmi.id="1869" value="" type="const Q_INT32" name="yTilt" />
+ <UML:Parameter visibility="private" xmi.id="1870" value="" type="const float" name="savedDist" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1871" type="void" name="setBackgroundColor" >
+ <UML:Parameter visibility="private" xmi.id="1872" value="" type="const KoColor &amp;" name="color" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1873" type="void" name="setBrush" >
+ <UML:Parameter visibility="private" xmi.id="1874" value="" type="KisBrush *" name="brush" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1875" type="void" name="setFillColor" >
+ <UML:Parameter visibility="private" xmi.id="1876" value="" type="const KoColor &amp;" name="color" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1877" type="void" name="setGradient" >
+ <UML:Parameter visibility="private" xmi.id="1878" value="" type="KisGradient &amp;" name="gradient" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1879" type="void" name="setOpacity" >
+ <UML:Parameter visibility="private" xmi.id="1880" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1881" type="void" name="setPaintColor" >
+ <UML:Parameter visibility="private" xmi.id="1882" value="" type="const KoColor &amp;" name="color" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1883" type="void" name="setPattern" >
+ <UML:Parameter visibility="private" xmi.id="1884" value="" type="KisPattern &amp;" name="pattern" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1885" type="void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="1886" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="1887" value="" type="KisTileSP" name="dsttile" />
+ <UML:Parameter visibility="private" xmi.id="1888" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="1889" value="" type="KisTileSP" name="srctile" />
+ <UML:Parameter visibility="private" xmi.id="1890" value="" type="QUANTUM" name="opacity" />
+ <UML:Parameter visibility="private" xmi.id="1891" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="1892" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="1893" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1894" type="void" name="tileBlt" >
+ <UML:Parameter visibility="private" xmi.id="1895" value="" type="QUANTUM *" name="dst" />
+ <UML:Parameter visibility="private" xmi.id="1896" value="" type="KisTileSP" name="dsttile" />
+ <UML:Parameter visibility="private" xmi.id="1897" value="" type="QUANTUM *" name="src" />
+ <UML:Parameter visibility="private" xmi.id="1898" value="" type="KisTileSP" name="srctile" />
+ <UML:Parameter visibility="private" xmi.id="1899" value="" type="Q_INT32" name="rows" />
+ <UML:Parameter visibility="private" xmi.id="1900" value="" type="Q_INT32" name="cols" />
+ <UML:Parameter visibility="private" xmi.id="1901" value="" type="CompositeOp" name="op" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1902" type="" name="~KisPainter" />
+ <UML:Attribute visibility="private" xmi.id="1768" value="" type="KoColor" name="m_backgroundColor" />
+ <UML:Attribute visibility="private" xmi.id="1770" value="" type="Q_INT32" name="m_brushHeight" />
+ <UML:Attribute visibility="private" xmi.id="1771" value="" type="Q_INT32" name="m_brushWidth" />
+ <UML:Attribute visibility="private" xmi.id="1772" value="" type="KisLayerSP" name="m_dab" />
+ <UML:Attribute visibility="private" xmi.id="1773" value="" type="KisPaintDeviceSP" name="m_device" />
+ <UML:Attribute visibility="private" xmi.id="1774" value="" type="QRect" name="m_dirtyRect" />
+ <UML:Attribute visibility="private" xmi.id="1775" value="" type="KoColor" name="m_fillColor" />
+ <UML:Attribute visibility="private" xmi.id="1777" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_hotSpot" />
+ <UML:Attribute visibility="private" xmi.id="1778" value="" type="Q_INT32" name="m_hotSpotX" />
+ <UML:Attribute visibility="private" xmi.id="1779" value="" type="Q_INT32" name="m_hotSpotY" />
+ <UML:Attribute visibility="private" xmi.id="1780" value="" type="QUANTUM" name="m_opacity" />
+ <UML:Attribute visibility="private" xmi.id="1781" value="" type="KoColor" name="m_paintColor" />
+ <UML:Attribute visibility="private" xmi.id="1782" value="" type="KisPattern *" name="m_pattern" />
+ <UML:Attribute visibility="private" xmi.id="1783" value="" type="KisTileCommand *" name="m_transaction" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1903" name="KisSelection" >
+ <UML:Operation visibility="public" xmi.id="1911" type="" name="KisSelection" >
+ <UML:Parameter visibility="private" xmi.id="1912" value="" type="KisPaintDeviceSP" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="1913" value="" type="KisImageSP" name="img" />
+ <UML:Parameter visibility="private" xmi.id="1914" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="1915" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1916" type="" name="KisSelection" >
+ <UML:Parameter visibility="private" xmi.id="1917" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1918" value="" type="Q_INT32" name="height" />
+ <UML:Parameter visibility="private" xmi.id="1919" value="" type="const enumImgType &amp;" name="imgType" />
+ <UML:Parameter visibility="private" xmi.id="1920" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1921" type="virtual void" name="anchor" />
+ <UML:Operation visibility="public" xmi.id="1922" type="void" name="clearParentOnMove" >
+ <UML:Parameter visibility="private" xmi.id="1923" value="" type="bool" name="f" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1924" type="void" name="commit" />
+ <UML:Operation visibility="public" xmi.id="1925" type="void" name="fromImage" >
+ <UML:Parameter visibility="private" xmi.id="1926" value="" type="const QImage &amp;" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1927" type="virtual void" name="move" >
+ <UML:Parameter visibility="private" xmi.id="1928" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="1929" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1930" type="KisPaintDeviceSP" name="tqparent" />
+ <UML:Operation visibility="public" xmi.id="1931" type="void" name="setBounds" >
+ <UML:Parameter visibility="private" xmi.id="1932" value="" type="Q_INT32" name="tqparentX" />
+ <UML:Parameter visibility="private" xmi.id="1933" value="" type="Q_INT32" name="tqparentY" />
+ <UML:Parameter visibility="private" xmi.id="1934" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="1935" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1936" type="void" name="setBounds" >
+ <UML:Parameter visibility="private" xmi.id="1937" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1938" type="void" name="setParent" >
+ <UML:Parameter visibility="private" xmi.id="1939" value="" type="KisPaintDeviceSP" name="tqparent" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1940" type="virtual bool" name="shouldDrawBorder" />
+ <UML:Operation visibility="public" xmi.id="1941" type="QImage" name="toImage" />
+ <UML:Operation visibility="public" xmi.id="1942" type="virtual " name="~KisSelection" />
+ <UML:Attribute visibility="private" xmi.id="1904" value="" type="bool" name="m_clearOnMove" />
+ <UML:Attribute visibility="private" xmi.id="1905" value="" type="QImage" name="m_clipImg" />
+ <UML:Attribute visibility="private" xmi.id="1906" value="" type="bool" name="m_firstMove" />
+ <UML:Attribute visibility="private" xmi.id="1907" value="" type="KisImageSP" name="m_img" />
+ <UML:Attribute visibility="private" xmi.id="1908" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="1909" value="" type="KisPaintDeviceSP" name="m_parent" />
+ <UML:Attribute visibility="private" xmi.id="1910" value="" type="QRect" name="m_rc" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1943" name="KisResourceMediator" >
+ <UML:Operation visibility="public" xmi.id="1947" type="" name="KisResourceMediator" >
+ <UML:Parameter visibility="private" xmi.id="1948" value="" type="Q_INT32" name="mediateOn" />
+ <UML:Parameter visibility="private" xmi.id="1949" value="" type="KisResourceServer *" name="rserver" />
+ <UML:Parameter visibility="private" xmi.id="1950" value="" type="const QString &amp;" name="chooserCaption" />
+ <UML:Parameter visibility="private" xmi.id="1951" value="" type="QWidget *" name="chooserParent" />
+ <UML:Parameter visibility="private" xmi.id="1952" value="" type="const char *" name="chooserName" />
+ <UML:Parameter visibility="private" xmi.id="1953" value="" type="QObject *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="1954" value="" type="const char *" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1955" type="QWidget *" name="chooserWidget" />
+ <UML:Operation visibility="public" xmi.id="1956" type="KisResource *" name="currentResource" />
+ <UML:Operation visibility="public" xmi.id="1957" type="KisIconItem *" name="itemFor" >
+ <UML:Parameter visibility="private" xmi.id="1958" value="" type="KisResource *" name="r" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1959" type="KisResource *" name="resourceFor" >
+ <UML:Parameter visibility="private" xmi.id="1960" value="" type="KisIconItem *" name="item" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1961" type="KisResource *" name="resourceFor" >
+ <UML:Parameter visibility="private" xmi.id="1962" value="" type="KoIconItem *" name="item" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1963" type="virtual " name="~KisResourceMediator" />
+ <UML:Attribute visibility="private" xmi.id="1944" value="" type="KoIconItem *" name="m_activeItem" />
+ <UML:Attribute visibility="private" xmi.id="1945" value="" type="KisItemChooser *" name="m_chooser" />
+ <UML:Attribute visibility="private" xmi.id="1946" value="" type="QMap" name="m_items" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1964" name="KisResourceServer" >
+ <UML:Operation visibility="public" xmi.id="1971" type="" name="KisResourceServer" />
+ <UML:Operation visibility="public" xmi.id="1972" type="Q_INT32" name="brushCount" />
+ <UML:Operation visibility="public" xmi.id="1973" type="QPtrList" name="brushes" />
+ <UML:Operation visibility="protected" xmi.id="1974" type="void" name="loadBrush" />
+ <UML:Operation visibility="public" xmi.id="1975" type="void" name="loadBrushes" />
+ <UML:Operation visibility="protected" xmi.id="1976" type="void" name="loadPattern" />
+ <UML:Operation visibility="public" xmi.id="1977" type="void" name="loadPatterns" />
+ <UML:Operation visibility="protected" xmi.id="1978" type="void" name="loadpipeBrush" />
+ <UML:Operation visibility="public" xmi.id="1979" type="void" name="loadpipeBrushes" />
+ <UML:Operation visibility="public" xmi.id="1980" type="Q_INT32" name="patternCount" />
+ <UML:Operation visibility="public" xmi.id="1981" type="QPtrList" name="patterns" />
+ <UML:Operation visibility="public" xmi.id="1982" type="Q_INT32" name="pipebrushCount" />
+ <UML:Operation visibility="public" xmi.id="1983" type="QPtrList" name="pipebrushes" />
+ <UML:Operation visibility="public" xmi.id="1984" type="virtual " name="~KisResourceServer" />
+ <UML:Attribute visibility="private" xmi.id="1965" value="" type=TQSTRINGLIST_OBJECT_NAME_STRING name="m_brushFilenames" />
+ <UML:Attribute visibility="private" xmi.id="1966" value="" type="QPtrList" name="m_brushes" />
+ <UML:Attribute visibility="private" xmi.id="1967" value="" type=TQSTRINGLIST_OBJECT_NAME_STRING name="m_patternFilenames" />
+ <UML:Attribute visibility="private" xmi.id="1968" value="" type="QPtrList" name="m_patterns" />
+ <UML:Attribute visibility="private" xmi.id="1969" value="" type=TQSTRINGLIST_OBJECT_NAME_STRING name="m_pipebrushFilenames" />
+ <UML:Attribute visibility="private" xmi.id="1970" value="" type="QPtrList" name="m_pipebrushes" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1985" name="KisPluginServer" >
+ <UML:Operation visibility="public" xmi.id="1988" type="" name="KisPluginServer" />
+ <UML:Operation visibility="public" xmi.id="1989" type="void" name="activatePlugin" >
+ <UML:Parameter visibility="private" xmi.id="1990" value="" type="int" name="id" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1991" type="void" name="buildFilterMenu" >
+ <UML:Parameter visibility="private" xmi.id="1992" value="" type="QPopupMenu *" name="menu" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="1993" type="void" name="findPlugins" >
+ <UML:Parameter visibility="private" xmi.id="1994" value="" type="const QString &amp;" name="directory" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="1995" type="" name="~KisPluginServer" />
+ <UML:Attribute visibility="private" xmi.id="1986" value="" type="int" name="m_count" />
+ <UML:Attribute visibility="private" xmi.id="1987" value="" type="PluginInfoList" name="m_plugins" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="1996" name="KisTileCommand" >
+ <UML:Operation visibility="public" xmi.id="2002" type="" name="KisTileCommand" >
+ <UML:Parameter visibility="private" xmi.id="2003" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="2004" value="" type="KisPaintDeviceSP" name="device" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2005" type="" name="KisTileCommand" >
+ <UML:Parameter visibility="private" xmi.id="2006" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="2007" value="" type="KisPaintDeviceSP" name="device" />
+ <UML:Parameter visibility="private" xmi.id="2008" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2009" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2010" value="" type="Q_INT32" name="width" />
+ <UML:Parameter visibility="private" xmi.id="2011" value="" type="Q_INT32" name="height" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2012" type="" name="KisTileCommand" >
+ <UML:Parameter visibility="private" xmi.id="2013" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="2014" value="" type="KisPaintDeviceSP" name="device" />
+ <UML:Parameter visibility="private" xmi.id="2015" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2016" type="void" name="addTile" >
+ <UML:Parameter visibility="private" xmi.id="2017" value="" type="Q_INT32" name="tileNo" />
+ <UML:Parameter visibility="private" xmi.id="2018" value="" type="KisTileSP" name="tile" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2019" type="virtual void" name="execute" />
+ <UML:Operation visibility="public" xmi.id="2020" type="virtual QString" name="name" />
+ <UML:Operation visibility="public" xmi.id="2021" type="virtual void" name="unexecute" />
+ <UML:Operation visibility="public" xmi.id="2022" type="virtual " name="~KisTileCommand" />
+ <UML:Attribute visibility="private" xmi.id="1997" value="" type="KisPaintDeviceSP" name="m_device" />
+ <UML:Attribute visibility="private" xmi.id="1998" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="1999" value="" type="TileMap" name="m_originals" />
+ <UML:Attribute visibility="private" xmi.id="2000" value="" type="QRect" name="m_rc" />
+ <UML:Attribute visibility="private" xmi.id="2001" value="" type="TileMap" name="m_tiles" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2023" name="PluginInfo" >
+ <UML:Operation visibility="public" xmi.id="2031" type="" name="PluginInfo" >
+ <UML:Parameter visibility="private" xmi.id="2032" value="" type="const QString &amp;" name="name" />
+ <UML:Parameter visibility="private" xmi.id="2033" value="" type="const QString &amp;" name="comment" />
+ <UML:Parameter visibility="private" xmi.id="2034" value="" type="const QString &amp;" name="dir" />
+ <UML:Parameter visibility="private" xmi.id="2035" value="" type="const QString &amp;" name="lib" />
+ <UML:Parameter visibility="private" xmi.id="2036" value="" type="const QString &amp;" name="category" />
+ <UML:Parameter visibility="private" xmi.id="2037" value="" type="PluginType" name="type" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2038" type=TQSTRING_OBJECT_NAME_STRING name="category" />
+ <UML:Operation visibility="public" xmi.id="2039" type=TQSTRING_OBJECT_NAME_STRING name="comment" />
+ <UML:Operation visibility="public" xmi.id="2040" type=TQSTRING_OBJECT_NAME_STRING name="dir" />
+ <UML:Operation visibility="public" xmi.id="2041" type="int" name="id" />
+ <UML:Operation visibility="public" xmi.id="2042" type=TQSTRING_OBJECT_NAME_STRING name="library" />
+ <UML:Operation visibility="public" xmi.id="2043" type=TQSTRING_OBJECT_NAME_STRING name="name" />
+ <UML:Operation visibility="public" xmi.id="2044" type="void" name="setId" >
+ <UML:Parameter visibility="private" xmi.id="2045" value="" type="int" name="id" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2046" type="PluginType" name="type" />
+ <UML:Attribute visibility="private" xmi.id="2024" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_category" />
+ <UML:Attribute visibility="private" xmi.id="2025" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_comment" />
+ <UML:Attribute visibility="private" xmi.id="2026" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_dir" />
+ <UML:Attribute visibility="private" xmi.id="2027" value="" type="int" name="m_id" />
+ <UML:Attribute visibility="private" xmi.id="2028" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_library" />
+ <UML:Attribute visibility="private" xmi.id="2029" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="2030" value="" type="PluginType" name="m_type" />
+ </UML:Class>
+ <UML:Class stereotype="class" comment="The KisResource class provides a representation of Chalk image resources. This
+includes, but not limited to, brushes and patterns.
+
+This replaces the KisKrayon facility that used to be present in Krayon." visibility="public" xmi.id="2047" name="KisResource" >
+ <UML:Operation visibility="protected" xmi.id="2055" type="KisResource &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2056" value="" type="const KisResource &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2057" type="" name="KisResource" >
+ <UML:Parameter visibility="private" xmi.id="2058" value="" type="const KisResource &amp;" />
+ </UML:Operation>
+ <UML:Operation comment="Creates a new KisResource object using @p filename. No file is opened
+in the constructor, you have to call loadAsync.
+
+@param filename the file name to save and load from." visibility="public" xmi.id="2059" type="" name="KisResource" >
+ <UML:Parameter visibility="private" xmi.id="2060" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2061" type="bool" name="dirty" />
+ <UML:Operation visibility="public" xmi.id="2062" type=TQSTRING_OBJECT_NAME_STRING name="filename" />
+ <UML:Operation visibility="public" xmi.id="2063" type="Q_INT32" name="height" />
+ <UML:Operation comment="Returns a QImage representing this resource. This image could be null." visibility="public" xmi.id="2064" type="virtual QImage" isAbstract="true" name="img" />
+ <UML:Operation comment="Load this resource asynchronously. The signal loadComplete is emitted when
+the resource has been loaded and valid flag is set to true." visibility="public" xmi.id="2065" type="virtual bool" isAbstract="true" name="loadAsync" />
+ <UML:Operation visibility="public" xmi.id="2066" type=TQSTRING_OBJECT_NAME_STRING name="name" />
+ <UML:Operation comment="Save this resource asynchronously. The signal saveComplete is emitted when
+the resource has been saved." visibility="public" xmi.id="2067" type="virtual bool" isAbstract="true" name="saveAsync" />
+ <UML:Operation visibility="public" xmi.id="2068" type="void" name="setDirty" >
+ <UML:Parameter visibility="private" xmi.id="2069" value="" type="bool" name="dirt" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2070" type="void" name="setFilename" >
+ <UML:Parameter visibility="private" xmi.id="2071" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2072" type="void" name="setHeight" >
+ <UML:Parameter visibility="private" xmi.id="2073" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2074" type="void" name="setName" >
+ <UML:Parameter visibility="private" xmi.id="2075" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2076" type="void" name="setSpacing" >
+ <UML:Parameter visibility="private" xmi.id="2077" value="" type="Q_INT32" name="s" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2078" type="void" name="setValid" >
+ <UML:Parameter visibility="private" xmi.id="2079" value="" type="bool" name="valid" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2080" type="void" name="setWidth" >
+ <UML:Parameter visibility="private" xmi.id="2081" value="" type="Q_INT32" name="w" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2082" type="Q_INT32" name="spacing" />
+ <UML:Operation visibility="public" xmi.id="2083" type="bool" name="valid" />
+ <UML:Operation visibility="public" xmi.id="2084" type="Q_INT32" name="width" />
+ <UML:Operation comment="Creates a new KisResource object using @p filename. No file is opened
+in the constructor, you have to call loadAsync.
+
+@param filename the file name to save and load from." visibility="public" xmi.id="2085" type="virtual " name="~KisResource" />
+ <UML:Attribute visibility="private" xmi.id="2048" value="" type="bool" name="m_dirty" />
+ <UML:Attribute visibility="private" xmi.id="2049" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_filename" />
+ <UML:Attribute visibility="private" xmi.id="2050" value="" type="Q_INT32" name="m_height" />
+ <UML:Attribute visibility="private" xmi.id="2051" value="" type=TQSTRING_OBJECT_NAME_STRING name="m_name" />
+ <UML:Attribute visibility="private" xmi.id="2052" value="" type="Q_INT32" name="m_spacing" />
+ <UML:Attribute visibility="private" xmi.id="2053" value="" type="bool" name="m_valid" />
+ <UML:Attribute visibility="private" xmi.id="2054" value="" type="Q_INT32" name="m_width" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2086" name="KisRenderInterface" >
+ <UML:Operation visibility="public" xmi.id="2087" type="KisRenderInterface &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2088" value="" type="const KisRenderInterface &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2089" type="" name="KisRenderInterface" />
+ <UML:Operation visibility="public" xmi.id="2090" type="" name="KisRenderInterface" >
+ <UML:Parameter visibility="private" xmi.id="2091" value="" type="const KisRenderInterface &amp;" name="rhs" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2092" type="virtual void" isAbstract="true" name="tqinvalidate" />
+ <UML:Operation visibility="public" xmi.id="2093" type="virtual void" isAbstract="true" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="2094" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2095" type="virtual void" isAbstract="true" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="2096" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2097" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2098" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="2099" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2100" type="virtual void" isAbstract="true" name="tqinvalidate" >
+ <UML:Parameter visibility="private" xmi.id="2101" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2102" type="virtual Q_INT32" isAbstract="true" name="tileNum" >
+ <UML:Parameter visibility="private" xmi.id="2103" value="" type="Q_INT32" name="xpix" />
+ <UML:Parameter visibility="private" xmi.id="2104" value="" type="Q_INT32" name="ypix" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2105" type="virtual KisTileMgrSP" isAbstract="true" name="tiles" />
+ <UML:Operation visibility="public" xmi.id="2106" type="virtual void" isAbstract="true" name="validate" >
+ <UML:Parameter visibility="private" xmi.id="2107" value="" type="Q_INT32" name="tileno" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2108" type="virtual " name="~KisRenderInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2109" name="KisPattern" >
+ <UML:Operation visibility="public" xmi.id="2117" type="" name="KisPattern" >
+ <UML:Parameter visibility="private" xmi.id="2118" value="" type="const QString &amp;" name="file" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2119" type=TQPOINT_OBJECT_NAME_STRING name="hotSpot" />
+ <UML:Operation visibility="public" xmi.id="2120" type="virtual QImage" name="img" />
+ <UML:Operation visibility="public" xmi.id="2121" type="bool" name="isValid" />
+ <UML:Operation visibility="public" xmi.id="2122" type="virtual bool" name="loadAsync" />
+ <UML:Operation visibility="public" xmi.id="2123" type="QPixmap &amp;" name="pixmap" />
+ <UML:Operation visibility="public" xmi.id="2124" type="virtual bool" name="saveAsync" />
+ <UML:Operation visibility="public" xmi.id="2125" type="QPixmap &amp;" name="thumbPixmap" />
+ <UML:Operation visibility="public" xmi.id="2126" type="virtual " name="~KisPattern" />
+ <UML:Attribute visibility="private" xmi.id="2110" value="" type=TQBYTEARRAY_OBJECT_NAME_STRING name="m_data" />
+ <UML:Attribute visibility="private" xmi.id="2111" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_hotSpot" />
+ <UML:Attribute visibility="private" xmi.id="2112" value="" type="QImage" name="m_img" />
+ <UML:Attribute visibility="private" xmi.id="2113" value="" type="QPixmap *" name="m_pixmap" />
+ <UML:Attribute visibility="private" xmi.id="2114" value="" type="QPixmap *" name="m_thumbPixmap" />
+ <UML:Attribute visibility="private" xmi.id="2115" value="" type="bool" name="m_valid" />
+ <UML:Attribute visibility="private" xmi.id="2116" value="" type="bool" name="m_validThumb" />
+ </UML:Class>
+ <UML:Enum stereotype="enum" visibility="public" xmi.id="2129" name="PluginType" >
+ <UML:EnumLiteral visibility="public" xmi.id="2130" name="PLUGIN_FILTER" />
+ <UML:EnumLiteral visibility="public" xmi.id="2131" name="PLUGIN_TOOL" />
+ </UML:Enum>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2132" name="PluginInfoList" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2133" name="TileMap" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="2135" name="KisTool" >
+ <UML:Operation visibility="protected" xmi.id="2136" type="KisTool &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2137" value="" type="const KisTool &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2138" type="" name="KisTool" />
+ <UML:Operation visibility="protected" xmi.id="2139" type="" name="KisTool" >
+ <UML:Parameter visibility="private" xmi.id="2140" value="" type="const KisTool &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2141" type="virtual void" isAbstract="true" name="clear" />
+ <UML:Operation visibility="public" xmi.id="2142" type="virtual void" isAbstract="true" name="clear" >
+ <UML:Parameter visibility="private" xmi.id="2143" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2144" type="virtual void" isAbstract="true" name="cursor" >
+ <UML:Parameter visibility="private" xmi.id="2145" value="" type="QWidget *" name="w" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2146" type="virtual void" isAbstract="true" name="enter" >
+ <UML:Parameter visibility="private" xmi.id="2147" value="" type="QEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2148" type="virtual void" isAbstract="true" name="keyPress" >
+ <UML:Parameter visibility="private" xmi.id="2149" value="" type="QKeyEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2150" type="virtual void" isAbstract="true" name="keyRelease" >
+ <UML:Parameter visibility="private" xmi.id="2151" value="" type="QKeyEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2152" type="virtual void" isAbstract="true" name="leave" >
+ <UML:Parameter visibility="private" xmi.id="2153" value="" type="QEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2154" type="virtual void" isAbstract="true" name="mouseMove" >
+ <UML:Parameter visibility="private" xmi.id="2155" value="" type="QMouseEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2156" type="virtual void" isAbstract="true" name="mousePress" >
+ <UML:Parameter visibility="private" xmi.id="2157" value="" type="QMouseEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2158" type="virtual void" isAbstract="true" name="mouseRelease" >
+ <UML:Parameter visibility="private" xmi.id="2159" value="" type="QMouseEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2160" type="virtual KDialog *" isAbstract="true" name="options" >
+ <UML:Parameter visibility="private" xmi.id="2161" value="" type="QWidget *" name="tqparent" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2162" type="virtual void" isAbstract="true" name="paint" >
+ <UML:Parameter visibility="private" xmi.id="2163" value="" type="QPainter &amp;" name="gc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2164" type="virtual void" isAbstract="true" name="paint" >
+ <UML:Parameter visibility="private" xmi.id="2165" value="" type="QPainter &amp;" name="gc" />
+ <UML:Parameter visibility="private" xmi.id="2166" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2167" type="virtual void" isAbstract="true" name="setCursor" >
+ <UML:Parameter visibility="private" xmi.id="2168" value="" type="const QCursor &amp;" name="cursor" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2169" type="virtual void" isAbstract="true" name="setup" >
+ <UML:Parameter visibility="private" xmi.id="2170" value="" type="KActionCollection *" name="collection" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2171" type="virtual void" isAbstract="true" name="tabletEvent" >
+ <UML:Parameter visibility="private" xmi.id="2172" value="" type="QTabletEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2173" type="virtual " name="~KisTool" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2174" name="KisUndoAdapter" >
+ <UML:Operation visibility="protected" xmi.id="2175" type="KisUndoAdapter &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2176" value="" type="const KisUndoAdapter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2177" type="" name="KisUndoAdapter" />
+ <UML:Operation visibility="protected" xmi.id="2178" type="" name="KisUndoAdapter" >
+ <UML:Parameter visibility="private" xmi.id="2179" value="" type="const KisUndoAdapter &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2180" type="virtual void" isAbstract="true" name="addCommand" >
+ <UML:Parameter visibility="private" xmi.id="2181" value="" type="KCommand *" name="cmd" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2182" type="virtual void" isAbstract="true" name="beginMacro" >
+ <UML:Parameter visibility="private" xmi.id="2183" value="" type="const QString &amp;" name="macroName" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2184" type="virtual void" isAbstract="true" name="endMacro" />
+ <UML:Operation visibility="public" xmi.id="2185" type="virtual bool" isAbstract="true" name="inMacro" />
+ <UML:Operation visibility="public" xmi.id="2186" type="virtual void" isAbstract="true" name="setUndo" >
+ <UML:Parameter visibility="private" xmi.id="2187" value="" type="bool" name="undo" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2188" type="virtual bool" isAbstract="true" name="undo" />
+ <UML:Operation visibility="public" xmi.id="2189" type="virtual " name="~KisUndoAdapter" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2190" name="KisToolFactory" >
+ <UML:Operation visibility="protected" xmi.id="2193" type="KisToolFactory &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2194" value="" type="const KisToolFactory &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2195" type="" name="KisToolFactory" />
+ <UML:Operation visibility="protected" xmi.id="2196" type="" name="KisToolFactory" >
+ <UML:Parameter visibility="private" xmi.id="2197" value="" type="const KisToolFactory &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2198" type="void" name="create" >
+ <UML:Parameter visibility="private" xmi.id="2199" value="" type="KActionCollection *" name="actionCollection" />
+ <UML:Parameter visibility="private" xmi.id="2200" value="" type="KisCanvasSubject *" name="subject" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2201" type="KisToolFactory *" name="singleton" ownerScope="classifier" />
+ <UML:Operation visibility="public" xmi.id="2202" type="" name="~KisToolFactory" />
+ <UML:Attribute visibility="private" xmi.id="2192" value="" type="vKisTool" name="m_tools" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2203" name="KisToolControllerInterface" >
+ <UML:Operation visibility="protected" xmi.id="2204" type="KisToolControllerInterface &amp;" name="=" >
+ <UML:Parameter visibility="private" xmi.id="2205" value="" type="const KisToolControllerInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2206" type="" name="KisToolControllerInterface" />
+ <UML:Operation visibility="protected" xmi.id="2207" type="" name="KisToolControllerInterface" >
+ <UML:Parameter visibility="private" xmi.id="2208" value="" type="const KisToolControllerInterface &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2209" type="virtual KisTool *" isAbstract="true" name="currentTool" />
+ <UML:Operation visibility="public" xmi.id="2210" type="virtual void" isAbstract="true" name="setCurrentTool" >
+ <UML:Parameter visibility="private" xmi.id="2211" value="" type="KisTool *" name="tool" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2212" type="virtual " name="~KisToolControllerInterface" />
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2218" name="KisUtil" >
+ <UML:Operation visibility="public" xmi.id="2219" type="void" name="enlargeRectToContainPoint" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2220" value="" type="QRect &amp;" name="r" />
+ <UML:Parameter visibility="private" xmi.id="2221" value="" type=TQPOINT_OBJECT_NAME_STRING name="p" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2222" type="QRect" name="findBoundingTiles" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2223" value="" type="const QRect &amp;" name="area" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2224" type="QRect" name="findTileExtents" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2225" value="" type="QRect" name="r" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2226" type="void" name="printPoint" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2227" value="" type="const QPoint &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2228" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2229" type="void" name="printRect" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2230" value="" type="const QRect &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2231" value="" type="const QString &amp;" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2232" type="QImage" name="roughScaleQImage" ownerScope="classifier" >
+ <UML:Parameter visibility="private" xmi.id="2233" value="" type="QImage &amp;" name="src" />
+ <UML:Parameter visibility="private" xmi.id="2234" value="" type="int" name="width" />
+ <UML:Parameter visibility="private" xmi.id="2235" value="" type="int" name="height" />
+ </UML:Operation>
+ </UML:Class>
+ <UML:Class stereotype="class" visibility="public" xmi.id="2236" name="KisVector" >
+ <UML:Operation visibility="public" xmi.id="2240" type="bool" name="!=" >
+ <UML:Parameter visibility="private" xmi.id="2241" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2242" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2243" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2244" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2245" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2246" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2247" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2248" value="" type="int" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2249" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2250" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2251" value="" type="long" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2252" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2253" value="" type="double" />
+ <UML:Parameter visibility="private" xmi.id="2254" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2255" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2256" value="" type="int" />
+ <UML:Parameter visibility="private" xmi.id="2257" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2258" type="KisVector" name="*" >
+ <UML:Parameter visibility="private" xmi.id="2259" value="" type="long" />
+ <UML:Parameter visibility="private" xmi.id="2260" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2261" type="KisVector &amp;" name="*=" >
+ <UML:Parameter visibility="private" xmi.id="2262" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2263" type="KisVector &amp;" name="*=" >
+ <UML:Parameter visibility="private" xmi.id="2264" value="" type="int" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2265" type="KisVector &amp;" name="*=" >
+ <UML:Parameter visibility="private" xmi.id="2266" value="" type="long" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2267" type="KisVector" name="+" >
+ <UML:Parameter visibility="private" xmi.id="2268" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2269" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2270" type="KisVector &amp;" name="+=" >
+ <UML:Parameter visibility="private" xmi.id="2271" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2272" type="KisVector" name="-" >
+ <UML:Parameter visibility="private" xmi.id="2273" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2274" type="KisVector" name="-" >
+ <UML:Parameter visibility="private" xmi.id="2275" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2276" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2277" type="KisVector &amp;" name="-=" >
+ <UML:Parameter visibility="private" xmi.id="2278" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2279" type="KisVector" name="/" >
+ <UML:Parameter visibility="private" xmi.id="2280" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2281" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2282" type="KisVector" name="/" >
+ <UML:Parameter visibility="private" xmi.id="2283" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2284" value="" type="int" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2285" type="KisVector" name="/" >
+ <UML:Parameter visibility="private" xmi.id="2286" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2287" value="" type="long" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2288" type="KisVector &amp;" name="/=" >
+ <UML:Parameter visibility="private" xmi.id="2289" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2290" type="KisVector &amp;" name="/=" >
+ <UML:Parameter visibility="private" xmi.id="2291" value="" type="int" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2292" type="KisVector &amp;" name="/=" >
+ <UML:Parameter visibility="private" xmi.id="2293" value="" type="long" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2294" type="bool" name="==" >
+ <UML:Parameter visibility="private" xmi.id="2295" value="" type="const KisVector &amp;" />
+ <UML:Parameter visibility="private" xmi.id="2296" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2297" type="" name="KisVector" />
+ <UML:Operation visibility="public" xmi.id="2298" type="" name="KisVector" >
+ <UML:Parameter visibility="private" xmi.id="2299" value="" type="double" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2300" value="" type="double" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2301" value="" type="double" name="z" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2302" type="" name="KisVector" >
+ <UML:Parameter visibility="private" xmi.id="2303" value="" type="int" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2304" value="" type="int" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2305" value="" type="int" name="z" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2306" type="" name="KisVector" >
+ <UML:Parameter visibility="private" xmi.id="2307" value="" type="long" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2308" value="" type="long" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2309" value="" type="long" name="z" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2310" type="KisVector &amp;" name="crossProduct" >
+ <UML:Parameter visibility="private" xmi.id="2311" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2312" type="double" name="dotProduct" >
+ <UML:Parameter visibility="private" xmi.id="2313" value="" type="const KisVector &amp;" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2314" type="bool" name="isNull" />
+ <UML:Operation visibility="public" xmi.id="2315" type="double" name="length" />
+ <UML:Operation visibility="public" xmi.id="2316" type="KisVector &amp;" name="normalize" />
+ <UML:Operation visibility="public" xmi.id="2317" type="void" name="setX" >
+ <UML:Parameter visibility="private" xmi.id="2318" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2319" type="void" name="setY" >
+ <UML:Parameter visibility="private" xmi.id="2320" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2321" type="void" name="setZ" >
+ <UML:Parameter visibility="private" xmi.id="2322" value="" type="double" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2323" type="double" name="x" />
+ <UML:Operation visibility="public" xmi.id="2324" type="double" name="y" />
+ <UML:Operation visibility="public" xmi.id="2325" type="double" name="z" />
+ <UML:Attribute visibility="private" xmi.id="2237" value="" type="double" name="m_x" />
+ <UML:Attribute visibility="private" xmi.id="2238" value="" type="double" name="m_y" />
+ <UML:Attribute visibility="private" xmi.id="2239" value="" type="double" name="m_z" />
+ </UML:Class>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2327" name="vKisTool" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2328" name="vKisChannelSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2329" name="KisMementoSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2330" name="vKisLayerSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2331" name="vKisChannelSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2332" name="vKisPaintDeviceSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2333" name="vKisImageSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2334" name="vKisTool_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2335" name="vKisChannelSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2336" name="KisDabSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2337" name="KisStrategyColorSpaceSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2338" name="vKisTileSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2339" name="KisChannelSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2340" name="KisTileSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2341" name="vKisSegments" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2342" name="KisSelectionSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2343" name="vKisMaskSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2344" name="vKisLayerSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2345" name="KisStrategyColorSpaceMap" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2346" name="KisBackgroundSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2347" name="vKisLayerSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2348" name="vKisMaskSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2349" name="vKisPaintDeviceSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2350" name="vKisPaintDeviceSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2351" name="vKisImageSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2352" name="vKisImageSP_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2353" name="vKisMaskSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2354" name="KisMaskSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2355" name="KisImageSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2356" name="vKisTileSP_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2357" name="vKisTool_cit" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2358" name="KisTileMgrSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2359" name="KisPixelDataSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2360" name="KisLayerSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2361" name="vKisTileSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2362" name="KisPaintDeviceSP" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2363" name="KoColorMap" />
+ <UML:Class stereotype="class" visibility="public" xmi.id="2365" name="KisView" >
+ <UML:Operation visibility="public" xmi.id="2448" type="" name="KisView" >
+ <UML:Parameter visibility="private" xmi.id="2449" value="" type="KisDoc *" name="doc" />
+ <UML:Parameter visibility="private" xmi.id="2450" value="" type="KisUndoAdapter *" name="adapter" />
+ <UML:Parameter visibility="private" xmi.id="2451" value="" type="QWidget *" name="tqparent" />
+ <UML:Parameter visibility="private" xmi.id="2452" value="" type="const char *" name="name" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2453" type="virtual void" name="attach" >
+ <UML:Parameter visibility="private" xmi.id="2454" value="" type="KisCanvasObserver *" name="observer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2455" type="virtual KoColor" name="bgColor" />
+ <UML:Operation visibility="protected" xmi.id="2456" type="virtual QWidget *" name="canvas" />
+ <UML:Operation visibility="protected" xmi.id="2457" type="virtual KisCanvasControllerInterface *" name="canvasController" />
+ <UML:Operation visibility="public" xmi.id="2458" type="virtual int" name="canvasXOffset" />
+ <UML:Operation visibility="public" xmi.id="2459" type="virtual int" name="canvasYOffset" />
+ <UML:Operation visibility="protected" xmi.id="2460" type="void" name="clearCanvas" >
+ <UML:Parameter visibility="private" xmi.id="2461" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2462" type="void" name="connectCurrentImg" />
+ <UML:Operation visibility="protected" xmi.id="2463" type="virtual KisBrush *" name="currentBrush" />
+ <UML:Operation visibility="protected" xmi.id="2464" type="virtual KisGradient *" name="currentGradient" />
+ <UML:Operation visibility="protected" xmi.id="2465" type="virtual KisImageSP" name="currentImg" />
+ <UML:Operation visibility="protected" xmi.id="2466" type="virtual QString" name="currentImgName" />
+ <UML:Operation visibility="protected" xmi.id="2467" type="virtual KisPattern *" name="currentPattern" />
+ <UML:Operation visibility="protected" xmi.id="2468" type="virtual KisTool *" name="currentTool" />
+ <UML:Operation visibility="public" xmi.id="2469" type="virtual DCOPObject *" name="dcopObject" />
+ <UML:Operation visibility="protected" xmi.id="2470" type="virtual void" name="detach" >
+ <UML:Parameter visibility="private" xmi.id="2471" value="" type="KisCanvasObserver *" name="observer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2472" type="void" name="disconnectCurrentImg" />
+ <UML:Operation visibility="public" xmi.id="2473" type="Q_INT32" name="docHeight" />
+ <UML:Operation visibility="public" xmi.id="2474" type="Q_INT32" name="docWidth" />
+ <UML:Operation visibility="protected" xmi.id="2475" type="virtual KoDocument *" name="document" />
+ <UML:Operation visibility="protected" xmi.id="2476" type="void" name="eraseGuides" />
+ <UML:Operation visibility="public" xmi.id="2477" type="virtual bool" name="eventFilter" >
+ <UML:Parameter visibility="private" xmi.id="2478" value="" type="QObject *" name="o" />
+ <UML:Parameter visibility="private" xmi.id="2479" value="" type="QEvent *" name="e" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2480" type="virtual KoColor" name="fgColor" />
+ <UML:Operation visibility="protected" xmi.id="2481" type="void" name="fillSelection" >
+ <UML:Parameter visibility="private" xmi.id="2482" value="" type="const KoColor &amp;" name="c" />
+ <UML:Parameter visibility="private" xmi.id="2483" value="" type="QUANTUM" name="opacity" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2484" type="virtual void" name="guiActivateEvent" >
+ <UML:Parameter visibility="private" xmi.id="2485" value="" type="KParts :: GUIActivateEvent *" name="event" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2486" type="virtual Q_INT32" name="horzValue" />
+ <UML:Operation visibility="protected" xmi.id="2487" type="void" name="imgUpdateGUI" />
+ <UML:Operation visibility="public" xmi.id="2488" type="Q_INT32" name="importImage" >
+ <UML:Parameter visibility="private" xmi.id="2489" value="" type="bool" name="createLayer" />
+ <UML:Parameter visibility="private" xmi.id="2490" value="" type="bool" name="modal" />
+ <UML:Parameter visibility="private" xmi.id="2491" value="" type="const QString &amp;" name="filename" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2492" type="void" name="layerUpdateGUI" >
+ <UML:Parameter visibility="private" xmi.id="2493" value="" type="bool" name="enable" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2494" type="virtual void" name="notify" />
+ <UML:Operation visibility="protected" xmi.id="2495" type="void" name="paintGuides" />
+ <UML:Operation visibility="protected" xmi.id="2496" type="void" name="paintView" >
+ <UML:Parameter visibility="private" xmi.id="2497" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2498" type="virtual void" name="print" >
+ <UML:Parameter visibility="private" xmi.id="2499" value="" type="KPrinter &amp;" name="printer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2500" type="virtual void" name="resizeEvent" >
+ <UML:Parameter visibility="private" xmi.id="2501" value="" type="QResizeEvent *" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2502" type="bool" name="selectColor" >
+ <UML:Parameter visibility="private" xmi.id="2503" value="" type="KoColor &amp;" name="result" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2504" type="void" name="selectImage" >
+ <UML:Parameter visibility="private" xmi.id="2505" value="" type="KisImageSP" name="img" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2506" type="void" name="selectionUpdateGUI" >
+ <UML:Parameter visibility="private" xmi.id="2507" value="" type="bool" name="enable" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2508" type="virtual void" name="setBGColor" >
+ <UML:Parameter visibility="private" xmi.id="2509" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2510" type="virtual void" name="setCurrentTool" >
+ <UML:Parameter visibility="private" xmi.id="2511" value="" type="KisTool *" name="tool" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2512" type="virtual void" name="setFGColor" >
+ <UML:Parameter visibility="private" xmi.id="2513" value="" type="const KoColor &amp;" name="c" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2514" type="void" name="setupActions" />
+ <UML:Operation visibility="protected" xmi.id="2515" type="void" name="setupCanvas" />
+ <UML:Operation visibility="protected" xmi.id="2516" type="void" name="setupClipboard" />
+ <UML:Operation visibility="public" xmi.id="2517" type="virtual void" name="setupPrinter" >
+ <UML:Parameter visibility="private" xmi.id="2518" value="" type="KPrinter &amp;" name="printer" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2519" type="void" name="setupRulers" />
+ <UML:Operation visibility="protected" xmi.id="2520" type="void" name="setupScrollBars" />
+ <UML:Operation visibility="protected" xmi.id="2521" type="void" name="setupSideBar" />
+ <UML:Operation visibility="protected" xmi.id="2522" type="void" name="setupStatusBar" />
+ <UML:Operation visibility="protected" xmi.id="2523" type="void" name="setupTabBar" />
+ <UML:Operation visibility="protected" xmi.id="2524" type="void" name="setupTools" />
+ <UML:Operation visibility="protected" xmi.id="2525" type="virtual KisToolControllerInterface *" name="toolController" />
+ <UML:Operation visibility="protected" xmi.id="2526" type="virtual KisUndoAdapter *" name="undoAdapter" />
+ <UML:Operation visibility="protected" xmi.id="2527" type="virtual void" name="updateCanvas" />
+ <UML:Operation visibility="protected" xmi.id="2528" type="virtual void" name="updateCanvas" >
+ <UML:Parameter visibility="private" xmi.id="2529" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2530" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2531" value="" type="Q_INT32" name="w" />
+ <UML:Parameter visibility="private" xmi.id="2532" value="" type="Q_INT32" name="h" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2533" type="virtual void" name="updateCanvas" >
+ <UML:Parameter visibility="private" xmi.id="2534" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2535" type="void" name="updateGuides" />
+ <UML:Operation visibility="public" xmi.id="2536" type="virtual void" name="updateReadWrite" >
+ <UML:Parameter visibility="private" xmi.id="2537" value="" type="bool" name="readwrite" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2538" type="virtual Q_INT32" name="vertValue" />
+ <UML:Operation visibility="protected" xmi.id="2539" type="virtual void" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="2540" value="" type="Q_INT32 *" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2541" value="" type="Q_INT32 *" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2542" type="virtual QPoint" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="2543" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2544" type="virtual QRect" name="viewToWindow" >
+ <UML:Parameter visibility="private" xmi.id="2545" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2546" type="virtual void" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="2547" value="" type="Q_INT32 *" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2548" value="" type="Q_INT32 *" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2549" type="virtual QPoint" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="2550" value="" type="const QPoint &amp;" name="pt" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2551" type="virtual QRect" name="windowToView" >
+ <UML:Parameter visibility="private" xmi.id="2552" value="" type="const QRect &amp;" name="rc" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2553" type="virtual double" name="zoomFactor" />
+ <UML:Operation visibility="protected" xmi.id="2554" type="virtual void" name="zoomIn" />
+ <UML:Operation visibility="protected" xmi.id="2555" type="virtual void" name="zoomIn" >
+ <UML:Parameter visibility="private" xmi.id="2556" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2557" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2558" type="virtual void" name="zoomOut" />
+ <UML:Operation visibility="protected" xmi.id="2559" type="virtual void" name="zoomOut" >
+ <UML:Parameter visibility="private" xmi.id="2560" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2561" value="" type="Q_INT32" name="y" />
+ </UML:Operation>
+ <UML:Operation visibility="protected" xmi.id="2562" type="void" name="zoomUpdateGUI" >
+ <UML:Parameter visibility="private" xmi.id="2563" value="" type="Q_INT32" name="x" />
+ <UML:Parameter visibility="private" xmi.id="2564" value="" type="Q_INT32" name="y" />
+ <UML:Parameter visibility="private" xmi.id="2565" value="" type="double" name="zf" />
+ </UML:Operation>
+ <UML:Operation visibility="public" xmi.id="2566" type="virtual " name="~KisView" />
+ <UML:Attribute visibility="private" xmi.id="2367" value="" type="KoColor" name="m_bg" />
+ <UML:Attribute visibility="private" xmi.id="2370" value="" type="KisLabelBuilderProgress *" name="m_buildProgress" />
+ <UML:Attribute visibility="private" xmi.id="2371" value="" type="KisCanvas *" name="m_canvas" />
+ <UML:Attribute visibility="private" xmi.id="2372" value="" type="KisChannelView *" name="m_channelView" />
+ <UML:Attribute visibility="private" xmi.id="2373" value="" type="bool" name="m_clipboardHasImage" />
+ <UML:Attribute visibility="private" xmi.id="2374" value="" type="mutable KisImageSP" name="m_current" />
+ <UML:Attribute visibility="private" xmi.id="2375" value="" type="KisGuideSP" name="m_currentGuide" />
+ <UML:Attribute visibility="private" xmi.id="2376" value="" type="DCOPObject *" name="m_dcop" />
+ <UML:Attribute visibility="private" xmi.id="2377" value="" type="KToggleAction *" name="m_dlgBrushToggle" />
+ <UML:Attribute visibility="private" xmi.id="2378" value="" type="KToggleAction *" name="m_dlgChannelsToggle" />
+ <UML:Attribute visibility="private" xmi.id="2379" value="" type="KToggleAction *" name="m_dlgColorsToggle" />
+ <UML:Attribute visibility="private" xmi.id="2380" value="" type="KToggleAction *" name="m_dlgLayersToggle" />
+ <UML:Attribute visibility="private" xmi.id="2381" value="" type="KToggleAction *" name="m_dlgPatternToggle" />
+ <UML:Attribute visibility="private" xmi.id="2383" value="" type="KoColor" name="m_fg" />
+ <UML:Attribute visibility="private" xmi.id="2384" value="" type="KToggleAction *" name="m_floatsidebarToggle" />
+ <UML:Attribute visibility="private" xmi.id="2386" value="" type="QWidget *" name="m_gradientChooser" />
+ <UML:Attribute visibility="private" xmi.id="2387" value="" type="KisRuler *" name="m_hRuler" />
+ <UML:Attribute visibility="private" xmi.id="2388" value="" type="QScrollBar *" name="m_hScroll" />
+ <UML:Attribute visibility="private" xmi.id="2389" value="" type="QWidget *" name="m_imageChooser" />
+ <UML:Attribute visibility="private" xmi.id="2391" value="" type="KAction *" name="m_imgDup" />
+ <UML:Attribute visibility="private" xmi.id="2392" value="" type="KAction *" name="m_imgExport" />
+ <UML:Attribute visibility="private" xmi.id="2393" value="" type="KAction *" name="m_imgImport" />
+ <UML:Attribute visibility="private" xmi.id="2394" value="" type="KAction *" name="m_imgMergeAll" />
+ <UML:Attribute visibility="private" xmi.id="2395" value="" type="KAction *" name="m_imgMergeLinked" />
+ <UML:Attribute visibility="private" xmi.id="2396" value="" type="KAction *" name="m_imgMergeVisible" />
+ <UML:Attribute visibility="private" xmi.id="2397" value="" type="KAction *" name="m_imgResize" />
+ <UML:Attribute visibility="private" xmi.id="2398" value="" type="KAction *" name="m_imgResizeToLayer" />
+ <UML:Attribute visibility="private" xmi.id="2399" value="" type="KAction *" name="m_imgRm" />
+ <UML:Attribute visibility="private" xmi.id="2400" value="" type="KAction *" name="m_imgScan" />
+ <UML:Attribute visibility="private" xmi.id="2401" value="" type=TQPOINT_OBJECT_NAME_STRING name="m_lastGuidePoint" />
+ <UML:Attribute visibility="private" xmi.id="2402" value="" type="KAction *" name="m_layerAdd" />
+ <UML:Attribute visibility="private" xmi.id="2403" value="" type="KAction *" name="m_layerBottom" />
+ <UML:Attribute visibility="private" xmi.id="2404" value="" type="KisListBox *" name="m_layerBox" />
+ <UML:Attribute visibility="private" xmi.id="2405" value="" type="KAction *" name="m_layerDup" />
+ <UML:Attribute visibility="private" xmi.id="2406" value="" type="KAction *" name="m_layerHide" />
+ <UML:Attribute visibility="private" xmi.id="2407" value="" type="KAction *" name="m_layerLink" />
+ <UML:Attribute visibility="private" xmi.id="2408" value="" type="KAction *" name="m_layerLower" />
+ <UML:Attribute visibility="private" xmi.id="2409" value="" type="KAction *" name="m_layerProperties" />
+ <UML:Attribute visibility="private" xmi.id="2410" value="" type="KAction *" name="m_layerRaise" />
+ <UML:Attribute visibility="private" xmi.id="2411" value="" type="KAction *" name="m_layerResize" />
+ <UML:Attribute visibility="private" xmi.id="2412" value="" type="KAction *" name="m_layerResizeToImage" />
+ <UML:Attribute visibility="private" xmi.id="2413" value="" type="KAction *" name="m_layerRm" />
+ <UML:Attribute visibility="private" xmi.id="2414" value="" type="KAction *" name="m_layerSaveAs" />
+ <UML:Attribute visibility="private" xmi.id="2415" value="" type="KAction *" name="m_layerScale" />
+ <UML:Attribute visibility="private" xmi.id="2416" value="" type="KAction *" name="m_layerToImage" />
+ <UML:Attribute visibility="private" xmi.id="2417" value="" type="KAction *" name="m_layerTop" />
+ <UML:Attribute visibility="private" xmi.id="2418" value="" type="KToggleAction *" name="m_lsidebarToggle" />
+ <UML:Attribute visibility="private" xmi.id="2419" value="" type="vKisCanvasObserver" name="m_observers" />
+ <UML:Attribute visibility="private" xmi.id="2420" value="" type="QWidget *" name="m_paletteChooser" />
+ <UML:Attribute visibility="private" xmi.id="2421" value="" type="QWidget *" name="m_pathView" />
+ <UML:Attribute visibility="private" xmi.id="2424" value="" type="KAction *" name="m_selectionCopy" />
+ <UML:Attribute visibility="private" xmi.id="2425" value="" type="KAction *" name="m_selectionCrop" />
+ <UML:Attribute visibility="private" xmi.id="2426" value="" type="KAction *" name="m_selectionCut" />
+ <UML:Attribute visibility="private" xmi.id="2427" value="" type="KAction *" name="m_selectionFillBg" />
+ <UML:Attribute visibility="private" xmi.id="2428" value="" type="KAction *" name="m_selectionFillFg" />
+ <UML:Attribute visibility="private" xmi.id="2429" value="" type="KAction *" name="m_selectionPaste" />
+ <UML:Attribute visibility="private" xmi.id="2430" value="" type="KAction *" name="m_selectionPasteInto" />
+ <UML:Attribute visibility="private" xmi.id="2431" value="" type="KAction *" name="m_selectionRm" />
+ <UML:Attribute visibility="private" xmi.id="2432" value="" type="KAction *" name="m_selectionSelectAll" />
+ <UML:Attribute visibility="private" xmi.id="2433" value="" type="KAction *" name="m_selectionSelectNone" />
+ <UML:Attribute visibility="private" xmi.id="2434" value="" type="KisSideBar *" name="m_sideBar" />
+ <UML:Attribute visibility="private" xmi.id="2435" value="" type="KToggleAction *" name="m_sidebarToggle" />
+ <UML:Attribute visibility="private" xmi.id="2436" value="" type="KoTabBar *" name="m_tabBar" />
+ <UML:Attribute visibility="private" xmi.id="2437" value="" type="QButton *" name="m_tabFirst" />
+ <UML:Attribute visibility="private" xmi.id="2438" value="" type="QButton *" name="m_tabLast" />
+ <UML:Attribute visibility="private" xmi.id="2439" value="" type="QButton *" name="m_tabLeft" />
+ <UML:Attribute visibility="private" xmi.id="2440" value="" type="QButton *" name="m_tabRight" />
+ <UML:Attribute visibility="private" xmi.id="2442" value="" type="KisRuler *" name="m_vRuler" />
+ <UML:Attribute visibility="private" xmi.id="2443" value="" type="QScrollBar *" name="m_vScroll" />
+ <UML:Attribute visibility="private" xmi.id="2444" value="" type="Q_INT32" name="m_xoff" />
+ <UML:Attribute visibility="private" xmi.id="2445" value="" type="Q_INT32" name="m_yoff" />
+ <UML:Attribute visibility="private" xmi.id="2446" value="" type="KAction *" name="m_zoomIn" />
+ <UML:Attribute visibility="private" xmi.id="2447" value="" type="KAction *" name="m_zoomOut" />
+ </UML:Class>
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2570" name="vKisCanvasObserver_it" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2571" name="vKisCanvasObserver" />
+ <UML:DataType stereotype="datatype" visibility="public" xmi.id="2572" name="vKisCanvasObserver_cit" />
+ <UML:Generalization child="12" visibility="public" xmi.id="54" tqparent="9" />
+ <UML:Association visibility="public" xmi.id="194" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="none" type="193" />
+ <UML:AssociationEndRole visibility="private" type="193" name="m_singleton" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Generalization child="81" visibility="public" xmi.id="276" tqparent="139" />
+ <UML:Generalization child="206" visibility="public" xmi.id="277" tqparent="139" />
+ <UML:Generalization child="266" visibility="public" xmi.id="278" tqparent="193" />
+ <UML:Association visibility="public" xmi.id="329" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="325" />
+ <UML:AssociationEndRole visibility="private" type="328" name="m_mediator" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="482" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="481" />
+ <UML:AssociationEndRole visibility="private" type="472" name="m_cache" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="492" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="481" />
+ <UML:AssociationEndRole visibility="private" type="455" name="m_swap" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1270" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="composite" type="1259" />
+ <UML:AssociationEndRole visibility="private" type="790" name="m_guides" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1285" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="composite" type="1259" />
+ <UML:AssociationEndRole visibility="private" type="1237" name="m_type" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1455" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="composite" type="1453" />
+ <UML:AssociationEndRole visibility="private" type="1198" name="m_compositeOp" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1458" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="composite" type="1453" />
+ <UML:AssociationEndRole visibility="private" type="1237" name="m_imgType" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1742" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="composite" type="1741" />
+ <UML:AssociationEndRole visibility="private" type="720" name="m_brushType" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Generalization child="1620" visibility="public" xmi.id="1764" tqparent="1453" />
+ <UML:Generalization child="1722" visibility="public" xmi.id="1765" tqparent="1130" />
+ <UML:Generalization child="1741" visibility="public" xmi.id="1766" tqparent="681" />
+ <UML:Association visibility="public" xmi.id="1769" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="1767" />
+ <UML:AssociationEndRole visibility="private" type="681" name="m_brush" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="1776" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="1767" />
+ <UML:AssociationEndRole visibility="private" type="856" name="m_gradient" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Generalization child="1903" visibility="public" xmi.id="2127" tqparent="1620" />
+ <UML:Generalization child="2109" visibility="public" xmi.id="2128" tqparent="2047" />
+ <UML:Association visibility="public" xmi.id="2191" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="none" type="2190" />
+ <UML:AssociationEndRole visibility="private" type="2190" name="m_singleton" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Generalization child="2135" visibility="public" xmi.id="2326" tqparent="1101" />
+ <UML:Association visibility="public" xmi.id="2366" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="2174" name="m_adapter" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2368" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="681" name="m_brush" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2369" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="1943" name="m_brushMediator" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2382" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="902" name="m_doc" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2385" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="856" name="m_gradient" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2390" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="44" name="m_imgBuilderMgr" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2422" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="2109" name="m_pattern" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2423" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="1943" name="m_patternMediator" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Association visibility="public" xmi.id="2441" >
+ <UML:Association.connection>
+ <UML:AssociationEndRole visibility="public" aggregation="shared" type="2365" />
+ <UML:AssociationEndRole visibility="private" type="2135" name="m_tool" />
+ </UML:Association.connection>
+ </UML:Association>
+ <UML:Generalization child="2365" visibility="public" xmi.id="2567" tqparent="1170" />
+ <UML:Generalization child="2365" visibility="public" xmi.id="2568" tqparent="750" />
+ <UML:Generalization child="2365" visibility="public" xmi.id="2569" tqparent="2203" />
+ <UML:Generalization child="681" visibility="public" xmi.id="2578" tqparent="2047" />
+ </UML:Model>
+ <diagrams>
+ <diagram snapgrid="1" showattsig="1" fillcolor="#ffffc0" zoom="75" showgrid="1" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="1285" snapy="10" showatts="1" xmi.id="1" documentation="" type="402" showops="1" showpackage="0" name="Chalk Core" localid="30000" showstereotype="0" showscope="1" snapcsgrid="1" font="Bitstream Vera Sans,14,-1,5,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="1221" >
+ <widgets>
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="1010" linecolour="none" y="170" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="613" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Arial,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="110" showattsigs="603" usesdiagramusefillcolour="1" x="1010" linecolour="none" y="130" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="670" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Arial,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="130" showattsigs="603" usesdiagramusefillcolour="1" x="130" linecolour="none" y="210" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="645" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Arial,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="210" showattsigs="603" usesdiagramusefillcolour="1" x="1010" linecolour="none" y="90" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="750" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Arial,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="150" showattsigs="603" usesdiagramusefillcolour="1" x="100" linecolour="none" y="530" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1101" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Arial,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="560" linecolour="none" y="440" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2109" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="110" showattsigs="603" usesdiagramusefillcolour="1" x="680" linecolour="none" y="620" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2047" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="80" showattsigs="603" usesdiagramusefillcolour="1" x="920" linecolour="none" y="480" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="681" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="220" linecolour="none" y="730" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="135" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="100" linecolour="none" y="630" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2023" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="80" showattsigs="603" usesdiagramusefillcolour="1" x="540" linecolour="none" y="600" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2365" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="20" linecolour="none" y="400" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2236" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="60" linecolour="none" y="380" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2218" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="150" showattsigs="603" usesdiagramusefillcolour="1" x="420" linecolour="none" y="780" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2174" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="130" showattsigs="603" usesdiagramusefillcolour="1" x="180" linecolour="none" y="400" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2190" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="230" showattsigs="603" usesdiagramusefillcolour="1" x="30" linecolour="none" y="330" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2203" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="30" linecolour="none" y="290" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2135" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="180" showattsigs="603" usesdiagramusefillcolour="1" x="1040" linecolour="none" y="1160" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="455" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="700" linecolour="none" y="1160" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="325" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="140" showattsigs="603" usesdiagramusefillcolour="1" x="880" linecolour="none" y="1160" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="328" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="150" showattsigs="603" usesdiagramusefillcolour="1" x="620" linecolour="none" y="1090" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1996" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="190" showattsigs="603" usesdiagramusefillcolour="1" x="920" linecolour="none" y="1090" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="472" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="810" linecolour="none" y="1090" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="481" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="150" showattsigs="603" usesdiagramusefillcolour="1" x="1030" linecolour="none" y="910" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="292" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="230" showattsigs="603" usesdiagramusefillcolour="1" x="300" linecolour="none" y="1170" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="206" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="250" showattsigs="603" usesdiagramusefillcolour="1" x="30" linecolour="none" y="1170" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="81" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="200" showattsigs="603" usesdiagramusefillcolour="1" x="180" linecolour="none" y="1080" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="139" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="110" showattsigs="603" usesdiagramusefillcolour="1" x="100" linecolour="none" y="480" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1903" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="140" showattsigs="603" usesdiagramusefillcolour="1" x="370" linecolour="none" y="670" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="283" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="170" showattsigs="603" usesdiagramusefillcolour="1" x="40" linecolour="none" y="660" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1964" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="190" showattsigs="603" usesdiagramusefillcolour="1" x="460" linecolour="none" y="190" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1943" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="170" showattsigs="603" usesdiagramusefillcolour="1" x="510" linecolour="none" y="110" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="2086" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="140" showattsigs="603" usesdiagramusefillcolour="1" x="430" linecolour="none" y="70" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1985" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="990" linecolour="none" y="310" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1767" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="190" showattsigs="603" usesdiagramusefillcolour="1" x="390" linecolour="none" y="330" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1679" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="130" showattsigs="603" usesdiagramusefillcolour="1" x="500" linecolour="none" y="280" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1453" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="140" showattsigs="603" usesdiagramusefillcolour="1" x="410" linecolour="none" y="260" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1667" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="380" linecolour="none" y="230" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="560" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="270" showattsigs="603" usesdiagramusefillcolour="1" x="40" linecolour="none" y="70" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1712" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="110" showattsigs="603" usesdiagramusefillcolour="1" x="40" linecolour="none" y="30" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1677" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="80" showattsigs="603" usesdiagramusefillcolour="1" x="700" linecolour="none" y="170" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1722" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="80" showattsigs="603" usesdiagramusefillcolour="1" x="730" linecolour="none" y="340" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1620" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="170" showattsigs="603" usesdiagramusefillcolour="1" x="40" linecolour="none" y="750" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1741" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="230" showattsigs="603" usesdiagramusefillcolour="1" x="130" linecolour="none" y="820" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="12" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="410" linecolour="none" y="860" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1259" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="120" showattsigs="603" usesdiagramusefillcolour="1" x="660" linecolour="none" y="770" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="790" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="80" showattsigs="603" usesdiagramusefillcolour="1" x="790" linecolour="none" y="710" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="740" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="110" showattsigs="603" usesdiagramusefillcolour="1" x="660" linecolour="none" y="870" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="856" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="840" linecolour="none" y="820" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="583" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="870" linecolour="none" y="660" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1110" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="880" linecolour="none" y="600" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="902" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="860" linecolour="none" y="560" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1058" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="90" showattsigs="603" usesdiagramusefillcolour="1" x="990" linecolour="none" y="610" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1085" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="120" showattsigs="603" usesdiagramusefillcolour="1" x="780" linecolour="none" y="70" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="727" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="260" showattsigs="603" usesdiagramusefillcolour="1" x="1010" linecolour="none" y="40" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="193" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="270" showattsigs="603" usesdiagramusefillcolour="1" x="680" linecolour="none" y="40" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="266" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="100" showattsigs="603" usesdiagramusefillcolour="1" x="400" linecolour="none" y="430" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1130" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="160" showattsigs="603" usesdiagramusefillcolour="1" x="80" linecolour="none" y="880" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="1170" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="160" showattsigs="603" usesdiagramusefillcolour="1" x="310" linecolour="none" y="460" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="9" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="160" showattsigs="603" usesdiagramusefillcolour="1" x="410" linecolour="none" y="150" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="44" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="130" showattsigs="603" usesdiagramusefillcolour="1" x="410" linecolour="none" y="120" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="711" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="130" showattsigs="603" usesdiagramusefillcolour="1" x="920" linecolour="none" y="430" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="624" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ <UML:ClassWidget usesdiagramfillcolour="1" width="70" showattsigs="603" usesdiagramusefillcolour="1" x="220" linecolour="none" y="600" showopsigs="603" instancename="" usesdiagramlinecolour="1" fillcolour="none" height="30" usefillcolor="1" showattributes="0" isinstance="0" xmi.id="259" showoperations="0" showpackage="0" showscope="0" showstereotype="0" font="Bitstream Vera Sans,14,-1,5,75,0,0,0,0,0" />
+ </widgets>
+ <messages/>
+ <associations>
+ <UML:AssocWidget totalcounta="2" indexa="1" totalcountb="3" indexb="1" widgetbid="2047" widgetaid="2109" xmi.id="2128" >
+ <linepath>
+ <startpoint startx="610" starty="470" />
+ <endpoint endx="716" endy="620" />
+ </linepath>
+ </UML:AssocWidget>
+ <UML:AssocWidget totalcounta="2" indexa="1" totalcountb="3" indexb="2" widgetbid="2047" widgetaid="681" xmi.id="2578" >
+ <linepath>
+ <startpoint startx="960" starty="510" />
+ <endpoint endx="753" endy="620" />
+ </linepath>
+ </UML:AssocWidget>
+ </associations>
+ </diagram>
+ </diagrams>
+ <listview>
+ <listitem open="1" type="800" id="-1" label="Views" >
+ <listitem open="1" type="801" id="-1" label="Logical View" >
+ <listitem open="0" type="807" id="1" label="Chalk Core" />
+ <listitem open="0" type="813" id="259" label="CMYK" >
+ <listitem open="0" type="814" id="260" label="c" />
+ <listitem open="0" type="814" id="261" label="k" />
+ <listitem open="0" type="814" id="262" label="m" />
+ <listitem open="0" type="814" id="263" label="y" />
+ <listitem open="0" type="815" id="264" label="&lt;" />
+ </listitem>
+ <listitem open="0" type="813" id="613" label="KIsDocIface" >
+ <listitem open="0" type="814" id="614" label="m_doc" />
+ <listitem open="0" type="815" id="615" label="redoLimit" />
+ <listitem open="0" type="815" id="616" label="renameImage" />
+ <listitem open="0" type="815" id="619" label="setRedoLimit" />
+ <listitem open="0" type="815" id="621" label="setUndoLimit" />
+ <listitem open="0" type="815" id="623" label="undoLimit" />
+ </listitem>
+ <listitem open="0" type="813" id="670" label="KIsImageIface" >
+ <listitem open="0" type="814" id="671" label="m_img" />
+ <listitem open="0" type="815" id="672" label="KIsImageIface" />
+ <listitem open="0" type="815" id="674" label="alpha" />
+ <listitem open="0" type="815" id="675" label="empty" />
+ <listitem open="0" type="815" id="676" label="height" />
+ <listitem open="0" type="815" id="677" label="name" />
+ <listitem open="0" type="815" id="678" label="setName" />
+ <listitem open="0" type="815" id="680" label="width" />
+ </listitem>
+ <listitem open="0" type="813" id="645" label="KRayonViewIface" >
+ <listitem open="0" type="814" id="646" label="m_view" />
+ <listitem open="0" type="815" id="647" label="KRayonViewIface" />
+ <listitem open="0" type="815" id="649" label="copy" />
+ <listitem open="0" type="815" id="650" label="crop" />
+ <listitem open="0" type="815" id="651" label="cut" />
+ <listitem open="0" type="815" id="652" label="dialog_brushes" />
+ <listitem open="0" type="815" id="653" label="dialog_channels" />
+ <listitem open="0" type="815" id="654" label="dialog_colors" />
+ <listitem open="0" type="815" id="655" label="dialog_crayons" />
+ <listitem open="0" type="815" id="656" label="dialog_gradient" />
+ <listitem open="0" type="815" id="657" label="dialog_layers" />
+ <listitem open="0" type="815" id="658" label="dialog_patterns" />
+ <listitem open="0" type="815" id="659" label="hide_layer" />
+ <listitem open="0" type="815" id="660" label="insert_layer" />
+ <listitem open="0" type="815" id="661" label="layer_properties" />
+ <listitem open="0" type="815" id="662" label="link_layer" />
+ <listitem open="0" type="815" id="663" label="next_layer" />
+ <listitem open="0" type="815" id="664" label="paste" />
+ <listitem open="0" type="815" id="665" label="previous_layer" />
+ <listitem open="0" type="815" id="666" label="removeSelection" />
+ <listitem open="0" type="815" id="667" label="remove_layer" />
+ <listitem open="0" type="815" id="668" label="selectAll" />
+ <listitem open="0" type="815" id="669" label="unSelectAll" />
+ </listitem>
+ <listitem open="0" type="813" id="624" label="KisAlphaMask" >
+ <listitem open="0" type="814" id="625" label="m_data" />
+ <listitem open="0" type="814" id="626" label="m_scale" />
+ <listitem open="0" type="814" id="627" label="m_scaledHeight" />
+ <listitem open="0" type="814" id="628" label="m_scaledWidth" />
+ <listitem open="0" type="815" id="629" label="KisAlphaMask" />
+ <listitem open="0" type="815" id="631" label="KisAlphaMask" />
+ <listitem open="0" type="815" id="634" label="alphaAt" />
+ <listitem open="0" type="815" id="637" label="computeAlpha" />
+ <listitem open="0" type="815" id="639" label="copyAlpha" />
+ <listitem open="0" type="815" id="641" label="height" />
+ <listitem open="0" type="815" id="642" label="scale" />
+ <listitem open="0" type="815" id="643" label="width" />
+ <listitem open="0" type="815" id="644" label="~KisAlphaMask" />
+ </listitem>
+ <listitem open="0" type="813" id="711" label="KisBackground" >
+ <listitem open="0" type="815" id="712" label="KisBackground" />
+ <listitem open="0" type="815" id="716" label="tileNum" />
+ <listitem open="0" type="815" id="719" label="~KisBackground" />
+ </listitem>
+ <listitem open="0" type="813" id="681" label="KisBrush" >
+ <listitem open="0" type="814" id="682" label="m_brushType" />
+ <listitem open="0" type="814" id="683" label="m_bytes" />
+ <listitem open="0" type="814" id="684" label="m_data" />
+ <listitem open="0" type="814" id="685" label="m_header_size" />
+ <listitem open="0" type="814" id="686" label="m_height" />
+ <listitem open="0" type="814" id="687" label="m_hotSpot" />
+ <listitem open="0" type="814" id="688" label="m_img" />
+ <listitem open="0" type="814" id="689" label="m_magic_number" />
+ <listitem open="0" type="814" id="690" label="m_tqmasks" />
+ <listitem open="0" type="814" id="691" label="m_version" />
+ <listitem open="0" type="814" id="692" label="m_width" />
+ <listitem open="0" type="815" id="695" label="KisBrush" />
+ <listitem open="0" type="815" id="693" label="KisBrush" />
+ <listitem open="0" type="815" id="699" label="brushType" />
+ <listitem open="0" type="815" id="700" label="createMasks" />
+ <listitem open="0" type="815" id="702" label="hotSpot" />
+ <listitem open="0" type="815" id="703" label="img" />
+ <listitem open="0" type="815" id="704" label="loadAsync" />
+ <listitem open="0" type="815" id="705" label="tqmask" />
+ <listitem open="0" type="815" id="707" label="saveAsync" />
+ <listitem open="0" type="815" id="708" label="setHotSpot" />
+ <listitem open="0" type="815" id="710" label="~KisBrush" />
+ </listitem>
+ <listitem open="0" type="813" id="44" label="KisBuilderMonitor" >
+ <listitem open="0" type="814" id="45" label="m_subjects" />
+ <listitem open="0" type="815" id="46" label="KisBuilderMonitor" />
+ <listitem open="0" type="815" id="49" label="attach" />
+ <listitem open="0" type="815" id="51" label="detach" />
+ <listitem open="0" type="815" id="53" label="~KisBuilderMonitor" />
+ </listitem>
+ <listitem open="0" type="813" id="9" label="KisBuilderSubject" >
+ <listitem open="0" type="815" id="10" label="intr" />
+ <listitem open="0" type="815" id="11" label="~KisBuilderSubject" />
+ </listitem>
+ <listitem open="0" type="813" id="750" label="KisCanvasControllerInterface" >
+ <listitem open="0" type="815" id="751" label="=" />
+ <listitem open="0" type="815" id="754" label="KisCanvasControllerInterface" />
+ <listitem open="0" type="815" id="753" label="KisCanvasControllerInterface" />
+ <listitem open="0" type="815" id="756" label="canvas" />
+ <listitem open="0" type="815" id="757" label="horzValue" />
+ <listitem open="0" type="815" id="759" label="updateCanvas" />
+ <listitem open="0" type="815" id="758" label="updateCanvas" />
+ <listitem open="0" type="815" id="764" label="updateCanvas" />
+ <listitem open="0" type="815" id="766" label="vertValue" />
+ <listitem open="0" type="815" id="772" label="viewToWindow" />
+ <listitem open="0" type="815" id="767" label="viewToWindow" />
+ <listitem open="0" type="815" id="770" label="viewToWindow" />
+ <listitem open="0" type="815" id="777" label="windowToView" />
+ <listitem open="0" type="815" id="774" label="windowToView" />
+ <listitem open="0" type="815" id="779" label="windowToView" />
+ <listitem open="0" type="815" id="782" label="zoomIn" />
+ <listitem open="0" type="815" id="781" label="zoomIn" />
+ <listitem open="0" type="815" id="785" label="zoomOut" />
+ <listitem open="0" type="815" id="786" label="zoomOut" />
+ <listitem open="0" type="815" id="789" label="~KisCanvasControllerInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="1101" label="KisCanvasObserver" >
+ <listitem open="0" type="815" id="1102" label="=" />
+ <listitem open="0" type="815" id="1104" label="KisCanvasObserver" />
+ <listitem open="0" type="815" id="1105" label="KisCanvasObserver" />
+ <listitem open="0" type="815" id="1107" label="update" />
+ <listitem open="0" type="815" id="1109" label="~KisCanvasObserver" />
+ </listitem>
+ <listitem open="0" type="813" id="1170" label="KisCanvasSubject" >
+ <listitem open="0" type="815" id="1171" label="=" />
+ <listitem open="0" type="815" id="1173" label="KisCanvasSubject" />
+ <listitem open="0" type="815" id="1174" label="KisCanvasSubject" />
+ <listitem open="0" type="815" id="1176" label="attach" />
+ <listitem open="0" type="815" id="1178" label="bgColor" />
+ <listitem open="0" type="815" id="1179" label="canvasController" />
+ <listitem open="0" type="815" id="1180" label="currentBrush" />
+ <listitem open="0" type="815" id="1181" label="currentGradient" />
+ <listitem open="0" type="815" id="1182" label="currentImg" />
+ <listitem open="0" type="815" id="1183" label="currentImgName" />
+ <listitem open="0" type="815" id="1184" label="currentPattern" />
+ <listitem open="0" type="815" id="1185" label="detach" />
+ <listitem open="0" type="815" id="1187" label="document" />
+ <listitem open="0" type="815" id="1188" label="fgColor" />
+ <listitem open="0" type="815" id="1189" label="notify" />
+ <listitem open="0" type="815" id="1190" label="setBGColor" />
+ <listitem open="0" type="815" id="1192" label="setFGColor" />
+ <listitem open="0" type="815" id="1194" label="toolController" />
+ <listitem open="0" type="815" id="1195" label="undoAdapter" />
+ <listitem open="0" type="815" id="1196" label="zoomFactor" />
+ <listitem open="0" type="815" id="1197" label="~KisCanvasSubject" />
+ </listitem>
+ <listitem open="0" type="813" id="1130" label="KisChannel" >
+ <listitem open="0" type="815" id="1137" label="KisChannel" />
+ <listitem open="0" type="815" id="1131" label="KisChannel" />
+ <listitem open="0" type="815" id="1139" label="border" />
+ <listitem open="0" type="815" id="1142" label="bounds" />
+ <listitem open="0" type="815" id="1144" label="clear" />
+ <listitem open="0" type="815" id="1146" label="color" />
+ <listitem open="0" type="815" id="1145" label="color" />
+ <listitem open="0" type="815" id="1148" label="createMask" />
+ <listitem open="0" type="815" id="1151" label="empty" />
+ <listitem open="0" type="815" id="1152" label="feather" />
+ <listitem open="0" type="815" id="1153" label="grow" />
+ <listitem open="0" type="815" id="1156" label="invert" />
+ <listitem open="0" type="815" id="1158" label="opacity" />
+ <listitem open="0" type="815" id="1157" label="opacity" />
+ <listitem open="0" type="815" id="1160" label="shrink" />
+ <listitem open="0" type="815" id="1163" label="translate" />
+ <listitem open="0" type="815" id="1166" label="value" />
+ <listitem open="0" type="815" id="1169" label="~KisChannel" />
+ </listitem>
+ <listitem open="0" type="813" id="266" label="KisColorSpaceFactoryFlyweight" >
+ <listitem open="0" type="814" id="267" label="m_flyweights" />
+ <listitem open="0" type="815" id="268" label="KisColorSpaceFactoryFlyweight" />
+ <listitem open="0" type="815" id="269" label="create" />
+ <listitem open="0" type="815" id="271" label="create" />
+ <listitem open="0" type="815" id="273" label="tqfind" />
+ <listitem open="0" type="815" id="275" label="~KisColorSpaceFactoryFlyweight" />
+ </listitem>
+ <listitem open="0" type="813" id="193" label="KisColorSpaceFactoryInterface" >
+ <listitem open="0" type="815" id="195" label="=" />
+ <listitem open="0" type="815" id="197" label="KisColorSpaceFactoryInterface" />
+ <listitem open="0" type="815" id="198" label="KisColorSpaceFactoryInterface" />
+ <listitem open="0" type="815" id="200" label="create" />
+ <listitem open="0" type="815" id="202" label="create" />
+ <listitem open="0" type="815" id="204" label="singleton" />
+ <listitem open="0" type="815" id="205" label="~KisColorSpaceFactoryInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="727" label="KisCommand" >
+ <listitem open="0" type="814" id="728" label="m_name" />
+ <listitem open="0" type="814" id="729" label="m_undoAdapter" />
+ <listitem open="0" type="815" id="732" label="KisCommand" />
+ <listitem open="0" type="815" id="730" label="KisCommand" />
+ <listitem open="0" type="815" id="735" label="adapter" />
+ <listitem open="0" type="815" id="736" label="execute" />
+ <listitem open="0" type="815" id="737" label="name" />
+ <listitem open="0" type="815" id="738" label="unexecute" />
+ <listitem open="0" type="815" id="739" label="~KisCommand" />
+ </listitem>
+ <listitem open="0" type="813" id="1085" label="KisConfig" >
+ <listitem open="0" type="814" id="1086" label="m_cfg" />
+ <listitem open="0" type="815" id="1087" label="=" />
+ <listitem open="0" type="815" id="1089" label="KisConfig" />
+ <listitem open="0" type="815" id="1090" label="KisConfig" />
+ <listitem open="0" type="815" id="1092" label="defImgHeight" />
+ <listitem open="0" type="815" id="1093" label="defImgWidth" />
+ <listitem open="0" type="815" id="1094" label="defLayerHeight" />
+ <listitem open="0" type="815" id="1095" label="defLayerWidth" />
+ <listitem open="0" type="815" id="1096" label="maxImgHeight" />
+ <listitem open="0" type="815" id="1097" label="maxImgWidth" />
+ <listitem open="0" type="815" id="1098" label="maxLayerHeight" />
+ <listitem open="0" type="815" id="1099" label="maxLayerWidth" />
+ <listitem open="0" type="815" id="1100" label="~KisConfig" />
+ </listitem>
+ <listitem open="0" type="813" id="1058" label="KisCursor" >
+ <listitem open="0" type="815" id="1059" label="KisCursor" />
+ <listitem open="0" type="815" id="1060" label="airbrushCursor" />
+ <listitem open="0" type="815" id="1061" label="arrowCursor" />
+ <listitem open="0" type="815" id="1062" label="blankCursor" />
+ <listitem open="0" type="815" id="1063" label="brushCursor" />
+ <listitem open="0" type="815" id="1064" label="colorChangerCursor" />
+ <listitem open="0" type="815" id="1065" label="crossCursor" />
+ <listitem open="0" type="815" id="1066" label="eraserCursor" />
+ <listitem open="0" type="815" id="1067" label="fillerCursor" />
+ <listitem open="0" type="815" id="1068" label="handCursor" />
+ <listitem open="0" type="815" id="1069" label="ibeamCursor" />
+ <listitem open="0" type="815" id="1070" label="moveCursor" />
+ <listitem open="0" type="815" id="1071" label="penCursor" />
+ <listitem open="0" type="815" id="1072" label="pickerCursor" />
+ <listitem open="0" type="815" id="1073" label="pointingHandCursor" />
+ <listitem open="0" type="815" id="1074" label="selectCursor" />
+ <listitem open="0" type="815" id="1075" label="sizeAllCursor" />
+ <listitem open="0" type="815" id="1076" label="sizeBDiagCursor" />
+ <listitem open="0" type="815" id="1077" label="sizeFDiagCursor" />
+ <listitem open="0" type="815" id="1078" label="sizeHorCursor" />
+ <listitem open="0" type="815" id="1079" label="sizeVerCursor" />
+ <listitem open="0" type="815" id="1080" label="splitHCursor" />
+ <listitem open="0" type="815" id="1081" label="splitVCursor" />
+ <listitem open="0" type="815" id="1082" label="upArrowCursor" />
+ <listitem open="0" type="815" id="1083" label="waitCursor" />
+ <listitem open="0" type="815" id="1084" label="zoomCursor" />
+ </listitem>
+ <listitem open="0" type="813" id="902" label="KisDoc" >
+ <listitem open="0" type="814" id="903" label="m_clipboard" />
+ <listitem open="0" type="814" id="904" label="m_cmdHistory" />
+ <listitem open="0" type="814" id="905" label="m_colorspaces" />
+ <listitem open="0" type="814" id="906" label="m_conversionDepth" />
+ <listitem open="0" type="814" id="907" label="m_currentMacro" />
+ <listitem open="0" type="814" id="908" label="m_dcop" />
+ <listitem open="0" type="814" id="909" label="m_images" />
+ <listitem open="0" type="814" id="910" label="m_nserver" />
+ <listitem open="0" type="814" id="911" label="m_projection" />
+ <listitem open="0" type="814" id="912" label="m_pushedClipboard" />
+ <listitem open="0" type="814" id="913" label="m_undo" />
+ <listitem open="0" type="815" id="914" label="KisDoc" />
+ <listitem open="0" type="815" id="920" label="addCommand" />
+ <listitem open="0" type="815" id="922" label="addImage" />
+ <listitem open="0" type="815" id="924" label="beginMacro" />
+ <listitem open="0" type="815" id="926" label="clipboardSelection" />
+ <listitem open="0" type="815" id="927" label="completeLoading" />
+ <listitem open="0" type="815" id="929" label="completeSaving" />
+ <listitem open="0" type="815" id="931" label="tqcontains" />
+ <listitem open="0" type="815" id="933" label="createViewInstance" />
+ <listitem open="0" type="815" id="936" label="dcopObject" />
+ <listitem open="0" type="815" id="937" label="empty" />
+ <listitem open="0" type="815" id="938" label="endMacro" />
+ <listitem open="0" type="815" id="939" label="findImage" />
+ <listitem open="0" type="815" id="941" label="imageIndex" />
+ <listitem open="0" type="815" id="943" label="imageNum" />
+ <listitem open="0" type="815" id="945" label="images" />
+ <listitem open="0" type="815" id="946" label="importImage" />
+ <listitem open="0" type="815" id="948" label="inMacro" />
+ <listitem open="0" type="815" id="949" label="init" />
+ <listitem open="0" type="815" id="950" label="initDoc" />
+ <listitem open="0" type="815" id="951" label="isEmpty" />
+ <listitem open="0" type="815" id="956" label="layerAdd" />
+ <listitem open="0" type="815" id="971" label="layerAdd" />
+ <listitem open="0" type="815" id="965" label="layerAdd" />
+ <listitem open="0" type="815" id="952" label="layerAdd" />
+ <listitem open="0" type="815" id="975" label="layerLower" />
+ <listitem open="0" type="815" id="978" label="layerNext" />
+ <listitem open="0" type="815" id="981" label="layerPrev" />
+ <listitem open="0" type="815" id="984" label="layerRaise" />
+ <listitem open="0" type="815" id="987" label="layerRemove" />
+ <listitem open="0" type="815" id="990" label="loadChannel" />
+ <listitem open="0" type="815" id="993" label="loadImage" />
+ <listitem open="0" type="815" id="995" label="loadLayer" />
+ <listitem open="0" type="815" id="998" label="loadOasis" />
+ <listitem open="0" type="815" id="1001" label="loadXML" />
+ <listitem open="0" type="815" id="1004" label="mimeType" />
+ <listitem open="0" type="815" id="1005" label="namePresent" />
+ <listitem open="0" type="815" id="1007" label="newImage" />
+ <listitem open="0" type="815" id="1012" label="nextImageName" />
+ <listitem open="0" type="815" id="1013" label="nimages" />
+ <listitem open="0" type="815" id="1014" label="paintContent" />
+ <listitem open="0" type="815" id="1020" label="redoLimit" />
+ <listitem open="0" type="815" id="1021" label="removeImage" />
+ <listitem open="0" type="815" id="1023" label="removeImage" />
+ <listitem open="0" type="815" id="1025" label="renameImage" />
+ <listitem open="0" type="815" id="1028" label="saveChannel" />
+ <listitem open="0" type="815" id="1031" label="saveImage" />
+ <listitem open="0" type="815" id="1034" label="saveLayer" />
+ <listitem open="0" type="815" id="1037" label="saveXML" />
+ <listitem open="0" type="815" id="1038" label="setClipboardSelection" />
+ <listitem open="0" type="815" id="1040" label="setLayerProperties" />
+ <listitem open="0" type="815" id="1046" label="setProjection" />
+ <listitem open="0" type="815" id="1048" label="setRedoLimit" />
+ <listitem open="0" type="815" id="1050" label="setUndo" />
+ <listitem open="0" type="815" id="1052" label="setUndoLimit" />
+ <listitem open="0" type="815" id="1054" label="setupColorspaces" />
+ <listitem open="0" type="815" id="1055" label="undo" />
+ <listitem open="0" type="815" id="1056" label="undoLimit" />
+ <listitem open="0" type="815" id="1057" label="~KisDoc" />
+ </listitem>
+ <listitem open="0" type="813" id="1110" label="KisFactory" >
+ <listitem open="0" type="814" id="1111" label="s_aboutData" />
+ <listitem open="0" type="814" id="1112" label="s_global" />
+ <listitem open="0" type="814" id="1113" label="s_pserver" />
+ <listitem open="0" type="814" id="1114" label="s_rserver" />
+ <listitem open="0" type="815" id="1115" label="KisFactory" />
+ <listitem open="0" type="815" id="1118" label="aboutData" />
+ <listitem open="0" type="815" id="1119" label="createPartObject" />
+ <listitem open="0" type="815" id="1126" label="global" />
+ <listitem open="0" type="815" id="1127" label="pServer" />
+ <listitem open="0" type="815" id="1128" label="rServer" />
+ <listitem open="0" type="815" id="1129" label="~KisFactory" />
+ </listitem>
+ <listitem open="0" type="813" id="583" label="KisFlatten" >
+ <listitem open="0" type="814" id="584" label="m_rc" />
+ <listitem open="0" type="814" id="585" label="m_test" />
+ <listitem open="0" type="815" id="588" label="KisFlatten" />
+ <listitem open="0" type="815" id="586" label="KisFlatten" />
+ <listitem open="0" type="815" id="606" label="visit" />
+ <listitem open="0" type="815" id="596" label="visit" />
+ <listitem open="0" type="815" id="593" label="visit" />
+ <listitem open="0" type="815" id="609" label="visit" />
+ <listitem open="0" type="815" id="603" label="visit" />
+ <listitem open="0" type="815" id="599" label="visit" />
+ <listitem open="0" type="815" id="612" label="~KisFlatten" />
+ </listitem>
+ <listitem open="0" type="813" id="856" label="KisGradient" >
+ <listitem open="0" type="814" id="857" label="gradArray" />
+ <listitem open="0" type="814" id="858" label="gradImage" />
+ <listitem open="0" type="814" id="859" label="mGradientHeight" />
+ <listitem open="0" type="814" id="860" label="mGradientWidth" />
+ <listitem open="0" type="815" id="861" label="KisGradient" />
+ <listitem open="0" type="815" id="862" label="arrayPixelValue" />
+ <listitem open="0" type="815" id="865" label="dither" />
+ <listitem open="0" type="815" id="869" label="gradient" />
+ <listitem open="0" type="815" id="875" label="height" />
+ <listitem open="0" type="815" id="876" label="imagePixelValue" />
+ <listitem open="0" type="815" id="879" label="mapHorGradient" />
+ <listitem open="0" type="815" id="883" label="mapKdeGradient" />
+ <listitem open="0" type="815" id="887" label="mapVertGradient" />
+ <listitem open="0" type="815" id="891" label="nearestColor" />
+ <listitem open="0" type="815" id="897" label="setEffect" />
+ <listitem open="0" type="815" id="899" label="setNull" />
+ <listitem open="0" type="815" id="900" label="width" />
+ <listitem open="0" type="815" id="901" label="~KisGradient" />
+ </listitem>
+ <listitem open="0" type="813" id="740" label="KisGuide" >
+ <listitem open="0" type="814" id="741" label="buffer" />
+ <listitem open="0" type="814" id="742" label="hasBuffer" />
+ <listitem open="0" type="814" id="743" label="pos" />
+ <listitem open="0" type="814" id="744" label="selected" />
+ <listitem open="0" type="815" id="745" label="KisGuide" />
+ <listitem open="0" type="815" id="747" label="isSelected" />
+ <listitem open="0" type="815" id="748" label="position" />
+ <listitem open="0" type="815" id="749" label="~KisGuide" />
+ </listitem>
+ <listitem open="0" type="813" id="790" label="KisGuideMgr" >
+ <listitem open="0" type="814" id="791" label="m_hGuideLines" />
+ <listitem open="0" type="814" id="792" label="m_hGuideLinesSelected" />
+ <listitem open="0" type="814" id="793" label="m_lines" />
+ <listitem open="0" type="814" id="794" label="m_pattern" />
+ <listitem open="0" type="814" id="795" label="m_patternSelected" />
+ <listitem open="0" type="814" id="796" label="m_size" />
+ <listitem open="0" type="814" id="797" label="m_slines" />
+ <listitem open="0" type="814" id="798" label="m_vGuideLines" />
+ <listitem open="0" type="814" id="799" label="m_vGuideLinesSelected" />
+ <listitem open="0" type="814" id="800" label="s_xbm" />
+ <listitem open="0" type="814" id="801" label="s_xbm_selected" />
+ <listitem open="0" type="815" id="802" label="KisGuideMgr" />
+ <listitem open="0" type="815" id="803" label="add" />
+ <listitem open="0" type="815" id="806" label="erase" />
+ <listitem open="0" type="815" id="812" label="tqfind" />
+ <listitem open="0" type="815" id="816" label="findHorizontal" />
+ <listitem open="0" type="815" id="819" label="findVertical" />
+ <listitem open="0" type="815" id="822" label="hasSelected" />
+ <listitem open="0" type="815" id="823" label="load" />
+ <listitem open="0" type="815" id="825" label="moveSelectedByX" />
+ <listitem open="0" type="815" id="827" label="moveSelectedByY" />
+ <listitem open="0" type="815" id="829" label="paint" />
+ <listitem open="0" type="815" id="835" label="remove" />
+ <listitem open="0" type="815" id="837" label="removeSelected" />
+ <listitem open="0" type="815" id="839" label="resize" />
+ <listitem open="0" type="815" id="838" label="resize" />
+ <listitem open="0" type="815" id="841" label="resizeLinesPixmap" />
+ <listitem open="0" type="815" id="846" label="save" />
+ <listitem open="0" type="815" id="848" label="select" />
+ <listitem open="0" type="815" id="850" label="selectAll" />
+ <listitem open="0" type="815" id="851" label="selectedCount" />
+ <listitem open="0" type="815" id="852" label="unselect" />
+ <listitem open="0" type="815" id="854" label="unselectAll" />
+ <listitem open="0" type="815" id="855" label="~KisGuideMgr" />
+ </listitem>
+ <listitem open="0" type="813" id="1259" label="KisImage" >
+ <listitem open="0" type="814" id="1260" label="m_active" />
+ <listitem open="0" type="814" id="1261" label="m_activeChannel" />
+ <listitem open="0" type="814" id="1262" label="m_activeLayer" />
+ <listitem open="0" type="814" id="1263" label="m_adapter" />
+ <listitem open="0" type="814" id="1264" label="m_alpha" />
+ <listitem open="0" type="814" id="1265" label="m_bkg" />
+ <listitem open="0" type="814" id="1266" label="m_channels" />
+ <listitem open="0" type="814" id="1267" label="m_clrMap" />
+ <listitem open="0" type="814" id="1268" label="m_depth" />
+ <listitem open="0" type="814" id="1269" label="m_dirty" />
+ <listitem open="0" type="814" id="1271" label="m_height" />
+ <listitem open="0" type="814" id="1272" label="m_layerStack" />
+ <listitem open="0" type="814" id="1273" label="m_layers" />
+ <listitem open="0" type="814" id="1274" label="m_tqmaskClr" />
+ <listitem open="0" type="814" id="1275" label="m_tqmaskEnabled" />
+ <listitem open="0" type="814" id="1276" label="m_tqmaskInverted" />
+ <listitem open="0" type="814" id="1277" label="m_name" />
+ <listitem open="0" type="814" id="1278" label="m_nserver" />
+ <listitem open="0" type="814" id="1279" label="m_ntileCols" />
+ <listitem open="0" type="814" id="1280" label="m_ntileRows" />
+ <listitem open="0" type="814" id="1281" label="m_projection" />
+ <listitem open="0" type="814" id="1282" label="m_selection" />
+ <listitem open="0" type="814" id="1283" label="m_selectionMask" />
+ <listitem open="0" type="814" id="1284" label="m_shadow" />
+ <listitem open="0" type="814" id="1286" label="m_undoHistory" />
+ <listitem open="0" type="814" id="1287" label="m_uri" />
+ <listitem open="0" type="814" id="1288" label="m_visible" />
+ <listitem open="0" type="814" id="1289" label="m_width" />
+ <listitem open="0" type="814" id="1290" label="m_xres" />
+ <listitem open="0" type="814" id="1291" label="m_yres" />
+ <listitem open="0" type="815" id="1292" label="=" />
+ <listitem open="0" type="815" id="1300" label="KisImage" />
+ <listitem open="0" type="815" id="1294" label="KisImage" />
+ <listitem open="0" type="815" id="1304" label="activate" />
+ <listitem open="0" type="815" id="1302" label="activate" />
+ <listitem open="0" type="815" id="1306" label="activateChannel" />
+ <listitem open="0" type="815" id="1308" label="activateLayer" />
+ <listitem open="0" type="815" id="1310" label="activeChannel" />
+ <listitem open="0" type="815" id="1311" label="activeComponent" />
+ <listitem open="0" type="815" id="1313" label="activeComponent" />
+ <listitem open="0" type="815" id="1316" label="activeDevice" />
+ <listitem open="0" type="815" id="1317" label="activeLayer" />
+ <listitem open="0" type="815" id="1318" label="add" />
+ <listitem open="0" type="815" id="1321" label="add" />
+ <listitem open="0" type="815" id="1324" label="alpha" />
+ <listitem open="0" type="815" id="1325" label="bottom" />
+ <listitem open="0" type="815" id="1327" label="bounds" />
+ <listitem open="0" type="815" id="1328" label="boundsLayer" />
+ <listitem open="0" type="815" id="1331" label="channel" />
+ <listitem open="0" type="815" id="1329" label="channel" />
+ <listitem open="0" type="815" id="1333" label="channels" />
+ <listitem open="0" type="815" id="1334" label="color" />
+ <listitem open="0" type="815" id="1335" label="colorMap" />
+ <listitem open="0" type="815" id="1337" label="correlateLayer" />
+ <listitem open="0" type="815" id="1340" label="depth" />
+ <listitem open="0" type="815" id="1341" label="empty" />
+ <listitem open="0" type="815" id="1342" label="enableUndo" />
+ <listitem open="0" type="815" id="1344" label="expand" />
+ <listitem open="0" type="815" id="1346" label="flush" />
+ <listitem open="0" type="815" id="1347" label="guides" />
+ <listitem open="0" type="815" id="1348" label="height" />
+ <listitem open="0" type="815" id="1349" label="imgType" />
+ <listitem open="0" type="815" id="1350" label="imgTypeWithAlpha" />
+ <listitem open="0" type="815" id="1353" label="index" />
+ <listitem open="0" type="815" id="1351" label="index" />
+ <listitem open="0" type="815" id="1355" label="init" />
+ <listitem open="0" type="815" id="1362" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1361" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1369" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1364" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1371" label="layer" />
+ <listitem open="0" type="815" id="1373" label="layer" />
+ <listitem open="0" type="815" id="1375" label="layers" />
+ <listitem open="0" type="815" id="1378" label="lower" />
+ <listitem open="0" type="815" id="1376" label="lower" />
+ <listitem open="0" type="815" id="1380" label="tqmask" />
+ <listitem open="0" type="815" id="1381" label="name" />
+ <listitem open="0" type="815" id="1382" label="nativeImgType" />
+ <listitem open="0" type="815" id="1383" label="nchannels" />
+ <listitem open="0" type="815" id="1384" label="nextLayerName" />
+ <listitem open="0" type="815" id="1385" label="nlayers" />
+ <listitem open="0" type="815" id="1386" label="notify" />
+ <listitem open="0" type="815" id="1387" label="notify" />
+ <listitem open="0" type="815" id="1392" label="notify" />
+ <listitem open="0" type="815" id="1394" label="pixelFromChannel" />
+ <listitem open="0" type="815" id="1399" label="pos" />
+ <listitem open="0" type="815" id="1396" label="pos" />
+ <listitem open="0" type="815" id="1404" label="raise" />
+ <listitem open="0" type="815" id="1402" label="raise" />
+ <listitem open="0" type="815" id="1409" label="resize" />
+ <listitem open="0" type="815" id="1406" label="resize" />
+ <listitem open="0" type="815" id="1414" label="resolution" />
+ <listitem open="0" type="815" id="1411" label="resolution" />
+ <listitem open="0" type="815" id="1419" label="rm" />
+ <listitem open="0" type="815" id="1417" label="rm" />
+ <listitem open="0" type="815" id="1421" label="selection" />
+ <listitem open="0" type="815" id="1422" label="setName" />
+ <listitem open="0" type="815" id="1424" label="setSelection" />
+ <listitem open="0" type="815" id="1426" label="shadow" />
+ <listitem open="0" type="815" id="1427" label="tileNum" />
+ <listitem open="0" type="815" id="1430" label="tiles" />
+ <listitem open="0" type="815" id="1431" label="top" />
+ <listitem open="0" type="815" id="1433" label="transformColor" />
+ <listitem open="0" type="815" id="1434" label="undoAdapter" />
+ <listitem open="0" type="815" id="1435" label="unit" />
+ <listitem open="0" type="815" id="1437" label="unsetActiveChannel" />
+ <listitem open="0" type="815" id="1438" label="unsetSelection" />
+ <listitem open="0" type="815" id="1441" label="uri" />
+ <listitem open="0" type="815" id="1440" label="uri" />
+ <listitem open="0" type="815" id="1443" label="validate" />
+ <listitem open="0" type="815" id="1447" label="visibleComponent" />
+ <listitem open="0" type="815" id="1445" label="visibleComponent" />
+ <listitem open="0" type="815" id="1450" label="width" />
+ <listitem open="0" type="815" id="1451" label="~KisImage" />
+ </listitem>
+ <listitem open="0" type="813" id="12" label="KisImageMagickConverter" >
+ <listitem open="0" type="814" id="13" label="m_adapter" />
+ <listitem open="0" type="814" id="14" label="m_data" />
+ <listitem open="0" type="814" id="15" label="m_doc" />
+ <listitem open="0" type="814" id="16" label="m_img" />
+ <listitem open="0" type="814" id="17" label="m_stop" />
+ <listitem open="0" type="815" id="18" label="=" />
+ <listitem open="0" type="815" id="23" label="KisImageMagickConverter" />
+ <listitem open="0" type="815" id="20" label="KisImageMagickConverter" />
+ <listitem open="0" type="815" id="28" label="buildFile" />
+ <listitem open="0" type="815" id="25" label="buildFile" />
+ <listitem open="0" type="815" id="31" label="buildImage" />
+ <listitem open="0" type="815" id="33" label="decode" />
+ <listitem open="0" type="815" id="36" label="image" />
+ <listitem open="0" type="815" id="37" label="init" />
+ <listitem open="0" type="815" id="40" label="intr" />
+ <listitem open="0" type="815" id="41" label="readFilters" />
+ <listitem open="0" type="815" id="42" label="writeFilters" />
+ <listitem open="0" type="815" id="43" label="~KisImageMagickConverter" />
+ </listitem>
+ <listitem open="0" type="813" id="1741" label="KisImagePipeBrush" >
+ <listitem open="0" type="814" id="1743" label="m_brushes" />
+ <listitem open="0" type="814" id="1744" label="m_currentBrush" />
+ <listitem open="0" type="814" id="1745" label="m_data" />
+ <listitem open="0" type="814" id="1746" label="m_hotSpot" />
+ <listitem open="0" type="814" id="1747" label="m_name" />
+ <listitem open="0" type="814" id="1748" label="m_numOfBrushes" />
+ <listitem open="0" type="814" id="1749" label="m_parasite" />
+ <listitem open="0" type="815" id="1750" label="KisImagePipeBrush" />
+ <listitem open="0" type="815" id="1752" label="brushType" />
+ <listitem open="0" type="815" id="1753" label="hotSpot" />
+ <listitem open="0" type="815" id="1754" label="img" />
+ <listitem open="0" type="815" id="1755" label="loadAsync" />
+ <listitem open="0" type="815" id="1756" label="tqmask" />
+ <listitem open="0" type="815" id="1758" label="saveAsync" />
+ <listitem open="0" type="815" id="1759" label="setHotSpot" />
+ <listitem open="0" type="815" id="1761" label="setParasite" />
+ <listitem open="0" type="815" id="1763" label="~KisImagePipeBrush" />
+ </listitem>
+ <listitem open="0" type="813" id="1620" label="KisLayer" >
+ <listitem open="0" type="814" id="1621" label="m_dx" />
+ <listitem open="0" type="814" id="1622" label="m_dy" />
+ <listitem open="0" type="814" id="1623" label="m_initial" />
+ <listitem open="0" type="814" id="1624" label="m_linked" />
+ <listitem open="0" type="814" id="1625" label="m_tqmask" />
+ <listitem open="0" type="814" id="1626" label="m_opacity" />
+ <listitem open="0" type="814" id="1627" label="m_preserveTransparency" />
+ <listitem open="0" type="815" id="1644" label="KisLayer" />
+ <listitem open="0" type="815" id="1639" label="KisLayer" />
+ <listitem open="0" type="815" id="1628" label="KisLayer" />
+ <listitem open="0" type="815" id="1634" label="KisLayer" />
+ <listitem open="0" type="815" id="1646" label="addAlpha" />
+ <listitem open="0" type="815" id="1647" label="addMask" />
+ <listitem open="0" type="815" id="1649" label="applyMask" />
+ <listitem open="0" type="815" id="1651" label="createMask" />
+ <listitem open="0" type="815" id="1654" label="linked" />
+ <listitem open="0" type="815" id="1653" label="linked" />
+ <listitem open="0" type="815" id="1656" label="tqmask" />
+ <listitem open="0" type="815" id="1657" label="opacity" />
+ <listitem open="0" type="815" id="1658" label="setOpacity" />
+ <listitem open="0" type="815" id="1660" label="translate" />
+ <listitem open="0" type="815" id="1664" label="visible" />
+ <listitem open="0" type="815" id="1663" label="visible" />
+ <listitem open="0" type="815" id="1666" label="~KisLayer" />
+ </listitem>
+ <listitem open="0" type="813" id="1722" label="KisMask" >
+ <listitem open="0" type="815" id="1729" label="KisMask" />
+ <listitem open="0" type="815" id="1723" label="KisMask" />
+ <listitem open="0" type="815" id="1732" label="apply" />
+ <listitem open="0" type="815" id="1731" label="apply" />
+ <listitem open="0" type="815" id="1734" label="edit" />
+ <listitem open="0" type="815" id="1735" label="edit" />
+ <listitem open="0" type="815" id="1738" label="layer" />
+ <listitem open="0" type="815" id="1737" label="layer" />
+ <listitem open="0" type="815" id="1740" label="~KisMask" />
+ </listitem>
+ <listitem open="0" type="813" id="1677" label="KisMemento" >
+ <listitem open="0" type="815" id="1678" label="~KisMemento" />
+ </listitem>
+ <listitem open="0" type="813" id="1712" label="KisMementoOriginatorInterface" >
+ <listitem open="0" type="815" id="1713" label="=" />
+ <listitem open="0" type="815" id="1716" label="KisMementoOriginatorInterface" />
+ <listitem open="0" type="815" id="1715" label="KisMementoOriginatorInterface" />
+ <listitem open="0" type="815" id="1718" label="restore" />
+ <listitem open="0" type="815" id="1720" label="save" />
+ <listitem open="0" type="815" id="1721" label="~KisMementoOriginatorInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="560" label="KisMerge" >
+ <listitem open="0" type="814" id="561" label="m_img" />
+ <listitem open="0" type="814" id="562" label="m_keepOld" />
+ <listitem open="0" type="814" id="563" label="m_rc" />
+ <listitem open="0" type="814" id="564" label="m_test" />
+ <listitem open="0" type="815" id="565" label="KisMerge" />
+ <listitem open="0" type="815" id="568" label="visit" />
+ <listitem open="0" type="815" id="571" label="visit" />
+ <listitem open="0" type="815" id="577" label="visit" />
+ <listitem open="0" type="815" id="574" label="visit" />
+ <listitem open="0" type="815" id="580" label="visit" />
+ </listitem>
+ <listitem open="0" type="813" id="1667" label="KisNameServer" >
+ <listitem open="0" type="814" id="1668" label="m_generator" />
+ <listitem open="0" type="814" id="1669" label="m_prefix" />
+ <listitem open="0" type="815" id="1670" label="KisNameServer" />
+ <listitem open="0" type="815" id="1673" label="currentSeed" />
+ <listitem open="0" type="815" id="1674" label="name" />
+ <listitem open="0" type="815" id="1675" label="number" />
+ <listitem open="0" type="815" id="1676" label="~KisNameServer" />
+ </listitem>
+ <listitem open="0" type="813" id="1453" label="KisPaintDevice" >
+ <listitem open="0" type="814" id="1454" label="m_alpha" />
+ <listitem open="0" type="814" id="1456" label="m_depth" />
+ <listitem open="0" type="814" id="1457" label="m_height" />
+ <listitem open="0" type="814" id="1459" label="m_name" />
+ <listitem open="0" type="814" id="1460" label="m_offH" />
+ <listitem open="0" type="814" id="1461" label="m_offW" />
+ <listitem open="0" type="814" id="1462" label="m_offX" />
+ <listitem open="0" type="814" id="1463" label="m_offY" />
+ <listitem open="0" type="814" id="1464" label="m_owner" />
+ <listitem open="0" type="814" id="1465" label="m_projection" />
+ <listitem open="0" type="814" id="1466" label="m_projectionValid" />
+ <listitem open="0" type="814" id="1467" label="m_quantumSize" />
+ <listitem open="0" type="814" id="1468" label="m_shadow" />
+ <listitem open="0" type="814" id="1469" label="m_tiles" />
+ <listitem open="0" type="814" id="1470" label="m_visible" />
+ <listitem open="0" type="814" id="1471" label="m_width" />
+ <listitem open="0" type="814" id="1472" label="m_x" />
+ <listitem open="0" type="814" id="1473" label="m_y" />
+ <listitem open="0" type="815" id="1474" label="=" />
+ <listitem open="0" type="815" id="1491" label="KisPaintDevice" />
+ <listitem open="0" type="815" id="1486" label="KisPaintDevice" />
+ <listitem open="0" type="815" id="1476" label="KisPaintDevice" />
+ <listitem open="0" type="815" id="1482" label="KisPaintDevice" />
+ <listitem open="0" type="815" id="1493" label="alpha" />
+ <listitem open="0" type="815" id="1494" label="anchor" />
+ <listitem open="0" type="815" id="1495" label="bounds" />
+ <listitem open="0" type="815" id="1497" label="clip" />
+ <listitem open="0" type="815" id="1496" label="clip" />
+ <listitem open="0" type="815" id="1502" label="cmap" />
+ <listitem open="0" type="815" id="1504" label="colorAt" />
+ <listitem open="0" type="815" id="1505" label="compositeOp" />
+ <listitem open="0" type="815" id="1506" label="configure" />
+ <listitem open="0" type="815" id="1513" label="tqcontains" />
+ <listitem open="0" type="815" id="1516" label="tqcontains" />
+ <listitem open="0" type="815" id="1519" label="data" />
+ <listitem open="0" type="815" id="1518" label="data" />
+ <listitem open="0" type="815" id="1524" label="expand" />
+ <listitem open="0" type="815" id="1521" label="expand" />
+ <listitem open="0" type="815" id="1527" label="height" />
+ <listitem open="0" type="815" id="1526" label="height" />
+ <listitem open="0" type="815" id="1529" label="image" />
+ <listitem open="0" type="815" id="1530" label="init" />
+ <listitem open="0" type="815" id="1532" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1531" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1539" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1534" label="tqinvalidate" />
+ <listitem open="0" type="815" id="1541" label="tqmaskBounds" />
+ <listitem open="0" type="815" id="1543" label="tqmaskBounds" />
+ <listitem open="0" type="815" id="1548" label="move" />
+ <listitem open="0" type="815" id="1551" label="move" />
+ <listitem open="0" type="815" id="1553" label="name" />
+ <listitem open="0" type="815" id="1554" label="offsetBy" />
+ <listitem open="0" type="815" id="1557" label="pixel" />
+ <listitem open="0" type="815" id="1562" label="quantumSize" />
+ <listitem open="0" type="815" id="1563" label="quantumSizeWithAlpha" />
+ <listitem open="0" type="815" id="1564" label="read" />
+ <listitem open="0" type="815" id="1570" label="resize" />
+ <listitem open="0" type="815" id="1566" label="resize" />
+ <listitem open="0" type="815" id="1567" label="resize" />
+ <listitem open="0" type="815" id="1572" label="setClip" />
+ <listitem open="0" type="815" id="1577" label="setCompositeOp" />
+ <listitem open="0" type="815" id="1579" label="setImage" />
+ <listitem open="0" type="815" id="1581" label="setName" />
+ <listitem open="0" type="815" id="1583" label="setPixel" />
+ <listitem open="0" type="815" id="1588" label="setX" />
+ <listitem open="0" type="815" id="1590" label="setY" />
+ <listitem open="0" type="815" id="1592" label="shadow" />
+ <listitem open="0" type="815" id="1593" label="shouldDrawBorder" />
+ <listitem open="0" type="815" id="1594" label="tileNum" />
+ <listitem open="0" type="815" id="1597" label="tiles" />
+ <listitem open="0" type="815" id="1598" label="type" />
+ <listitem open="0" type="815" id="1599" label="typeWithAlpha" />
+ <listitem open="0" type="815" id="1600" label="typeWithoutAlpha" />
+ <listitem open="0" type="815" id="1602" label="update" />
+ <listitem open="0" type="815" id="1601" label="update" />
+ <listitem open="0" type="815" id="1607" label="validate" />
+ <listitem open="0" type="815" id="1609" label="visible" />
+ <listitem open="0" type="815" id="1610" label="visible" />
+ <listitem open="0" type="815" id="1612" label="width" />
+ <listitem open="0" type="815" id="1613" label="width" />
+ <listitem open="0" type="815" id="1615" label="write" />
+ <listitem open="0" type="815" id="1617" label="x" />
+ <listitem open="0" type="815" id="1618" label="y" />
+ <listitem open="0" type="815" id="1619" label="~KisPaintDevice" />
+ </listitem>
+ <listitem open="0" type="813" id="1679" label="KisPaintDeviceVisitor" >
+ <listitem open="0" type="815" id="1692" label="()" />
+ <listitem open="0" type="815" id="1680" label="()" />
+ <listitem open="0" type="815" id="1686" label="()" />
+ <listitem open="0" type="815" id="1683" label="()" />
+ <listitem open="0" type="815" id="1689" label="()" />
+ <listitem open="0" type="815" id="1695" label="KisPaintDeviceVisitor" />
+ <listitem open="0" type="815" id="1699" label="visit" />
+ <listitem open="0" type="815" id="1696" label="visit" />
+ <listitem open="0" type="815" id="1702" label="visit" />
+ <listitem open="0" type="815" id="1705" label="visit" />
+ <listitem open="0" type="815" id="1708" label="visit" />
+ <listitem open="0" type="815" id="1711" label="~KisPaintDeviceVisitor" />
+ </listitem>
+ <listitem open="0" type="813" id="1767" label="KisPainter" >
+ <listitem open="0" type="814" id="1768" label="m_backgroundColor" />
+ <listitem open="0" type="814" id="1770" label="m_brushHeight" />
+ <listitem open="0" type="814" id="1771" label="m_brushWidth" />
+ <listitem open="0" type="814" id="1772" label="m_dab" />
+ <listitem open="0" type="814" id="1773" label="m_device" />
+ <listitem open="0" type="814" id="1774" label="m_dirtyRect" />
+ <listitem open="0" type="814" id="1775" label="m_fillColor" />
+ <listitem open="0" type="814" id="1777" label="m_hotSpot" />
+ <listitem open="0" type="814" id="1778" label="m_hotSpotX" />
+ <listitem open="0" type="814" id="1779" label="m_hotSpotY" />
+ <listitem open="0" type="814" id="1780" label="m_opacity" />
+ <listitem open="0" type="814" id="1781" label="m_paintColor" />
+ <listitem open="0" type="814" id="1782" label="m_pattern" />
+ <listitem open="0" type="814" id="1783" label="m_transaction" />
+ <listitem open="0" type="815" id="1784" label="=" />
+ <listitem open="0" type="815" id="1787" label="KisPainter" />
+ <listitem open="0" type="815" id="1789" label="KisPainter" />
+ <listitem open="0" type="815" id="1786" label="KisPainter" />
+ <listitem open="0" type="815" id="1791" label="begin" />
+ <listitem open="0" type="815" id="1793" label="beginTransaction" />
+ <listitem open="0" type="815" id="1795" label="bitBlt" />
+ <listitem open="0" type="815" id="1805" label="bitBlt" />
+ <listitem open="0" type="815" id="1814" label="computeDab" />
+ <listitem open="0" type="815" id="1816" label="device" />
+ <listitem open="0" type="815" id="1817" label="dirtyRect" />
+ <listitem open="0" type="815" id="1818" label="end" />
+ <listitem open="0" type="815" id="1819" label="endTransaction" />
+ <listitem open="0" type="815" id="1820" label="eraseAt" />
+ <listitem open="0" type="815" id="1825" label="eraseLine" />
+ <listitem open="0" type="815" id="1837" label="eraseRect" />
+ <listitem open="0" type="815" id="1832" label="eraseRect" />
+ <listitem open="0" type="815" id="1839" label="fillRect" />
+ <listitem open="0" type="815" id="1852" label="fillRect" />
+ <listitem open="0" type="815" id="1855" label="fillRect" />
+ <listitem open="0" type="815" id="1845" label="fillRect" />
+ <listitem open="0" type="815" id="1859" label="paintAt" />
+ <listitem open="0" type="815" id="1864" label="paintLine" />
+ <listitem open="0" type="815" id="1871" label="setBackgroundColor" />
+ <listitem open="0" type="815" id="1873" label="setBrush" />
+ <listitem open="0" type="815" id="1875" label="setFillColor" />
+ <listitem open="0" type="815" id="1877" label="setGradient" />
+ <listitem open="0" type="815" id="1879" label="setOpacity" />
+ <listitem open="0" type="815" id="1881" label="setPaintColor" />
+ <listitem open="0" type="815" id="1883" label="setPattern" />
+ <listitem open="0" type="815" id="1894" label="tileBlt" />
+ <listitem open="0" type="815" id="1885" label="tileBlt" />
+ <listitem open="0" type="815" id="1902" label="~KisPainter" />
+ </listitem>
+ <listitem open="0" type="813" id="2109" label="KisPattern" >
+ <listitem open="0" type="814" id="2110" label="m_data" />
+ <listitem open="0" type="814" id="2111" label="m_hotSpot" />
+ <listitem open="0" type="814" id="2112" label="m_img" />
+ <listitem open="0" type="814" id="2113" label="m_pixmap" />
+ <listitem open="0" type="814" id="2114" label="m_thumbPixmap" />
+ <listitem open="0" type="814" id="2115" label="m_valid" />
+ <listitem open="0" type="814" id="2116" label="m_validThumb" />
+ <listitem open="0" type="815" id="2117" label="KisPattern" />
+ <listitem open="0" type="815" id="2119" label="hotSpot" />
+ <listitem open="0" type="815" id="2120" label="img" />
+ <listitem open="0" type="815" id="2121" label="isValid" />
+ <listitem open="0" type="815" id="2122" label="loadAsync" />
+ <listitem open="0" type="815" id="2123" label="pixmap" />
+ <listitem open="0" type="815" id="2124" label="saveAsync" />
+ <listitem open="0" type="815" id="2125" label="thumbPixmap" />
+ <listitem open="0" type="815" id="2126" label="~KisPattern" />
+ </listitem>
+ <listitem open="0" type="813" id="1985" label="KisPluginServer" >
+ <listitem open="0" type="814" id="1986" label="m_count" />
+ <listitem open="0" type="814" id="1987" label="m_plugins" />
+ <listitem open="0" type="815" id="1988" label="KisPluginServer" />
+ <listitem open="0" type="815" id="1989" label="activatePlugin" />
+ <listitem open="0" type="815" id="1991" label="buildFilterMenu" />
+ <listitem open="0" type="815" id="1993" label="findPlugins" />
+ <listitem open="0" type="815" id="1995" label="~KisPluginServer" />
+ </listitem>
+ <listitem open="0" type="813" id="2086" label="KisRenderInterface" >
+ <listitem open="0" type="815" id="2087" label="=" />
+ <listitem open="0" type="815" id="2089" label="KisRenderInterface" />
+ <listitem open="0" type="815" id="2090" label="KisRenderInterface" />
+ <listitem open="0" type="815" id="2093" label="tqinvalidate" />
+ <listitem open="0" type="815" id="2095" label="tqinvalidate" />
+ <listitem open="0" type="815" id="2092" label="tqinvalidate" />
+ <listitem open="0" type="815" id="2100" label="tqinvalidate" />
+ <listitem open="0" type="815" id="2102" label="tileNum" />
+ <listitem open="0" type="815" id="2105" label="tiles" />
+ <listitem open="0" type="815" id="2106" label="validate" />
+ <listitem open="0" type="815" id="2108" label="~KisRenderInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="2047" label="KisResource" >
+ <listitem open="0" type="814" id="2048" label="m_dirty" />
+ <listitem open="0" type="814" id="2049" label="m_filename" />
+ <listitem open="0" type="814" id="2050" label="m_height" />
+ <listitem open="0" type="814" id="2051" label="m_name" />
+ <listitem open="0" type="814" id="2052" label="m_spacing" />
+ <listitem open="0" type="814" id="2053" label="m_valid" />
+ <listitem open="0" type="814" id="2054" label="m_width" />
+ <listitem open="0" type="815" id="2055" label="=" />
+ <listitem open="0" type="815" id="2057" label="KisResource" />
+ <listitem open="0" type="815" id="2059" label="KisResource" />
+ <listitem open="0" type="815" id="2061" label="dirty" />
+ <listitem open="0" type="815" id="2062" label="filename" />
+ <listitem open="0" type="815" id="2063" label="height" />
+ <listitem open="0" type="815" id="2064" label="img" />
+ <listitem open="0" type="815" id="2065" label="loadAsync" />
+ <listitem open="0" type="815" id="2066" label="name" />
+ <listitem open="0" type="815" id="2067" label="saveAsync" />
+ <listitem open="0" type="815" id="2068" label="setDirty" />
+ <listitem open="0" type="815" id="2070" label="setFilename" />
+ <listitem open="0" type="815" id="2072" label="setHeight" />
+ <listitem open="0" type="815" id="2074" label="setName" />
+ <listitem open="0" type="815" id="2076" label="setSpacing" />
+ <listitem open="0" type="815" id="2078" label="setValid" />
+ <listitem open="0" type="815" id="2080" label="setWidth" />
+ <listitem open="0" type="815" id="2082" label="spacing" />
+ <listitem open="0" type="815" id="2083" label="valid" />
+ <listitem open="0" type="815" id="2084" label="width" />
+ <listitem open="0" type="815" id="2085" label="~KisResource" />
+ </listitem>
+ <listitem open="0" type="813" id="1943" label="KisResourceMediator" >
+ <listitem open="0" type="814" id="1944" label="m_activeItem" />
+ <listitem open="0" type="814" id="1945" label="m_chooser" />
+ <listitem open="0" type="814" id="1946" label="m_items" />
+ <listitem open="0" type="815" id="1947" label="KisResourceMediator" />
+ <listitem open="0" type="815" id="1955" label="chooserWidget" />
+ <listitem open="0" type="815" id="1956" label="currentResource" />
+ <listitem open="0" type="815" id="1957" label="itemFor" />
+ <listitem open="0" type="815" id="1959" label="resourceFor" />
+ <listitem open="0" type="815" id="1961" label="resourceFor" />
+ <listitem open="0" type="815" id="1963" label="~KisResourceMediator" />
+ </listitem>
+ <listitem open="0" type="813" id="1964" label="KisResourceServer" >
+ <listitem open="0" type="814" id="1965" label="m_brushFilenames" />
+ <listitem open="0" type="814" id="1966" label="m_brushes" />
+ <listitem open="0" type="814" id="1967" label="m_patternFilenames" />
+ <listitem open="0" type="814" id="1968" label="m_patterns" />
+ <listitem open="0" type="814" id="1969" label="m_pipebrushFilenames" />
+ <listitem open="0" type="814" id="1970" label="m_pipebrushes" />
+ <listitem open="0" type="815" id="1971" label="KisResourceServer" />
+ <listitem open="0" type="815" id="1972" label="brushCount" />
+ <listitem open="0" type="815" id="1973" label="brushes" />
+ <listitem open="0" type="815" id="1974" label="loadBrush" />
+ <listitem open="0" type="815" id="1975" label="loadBrushes" />
+ <listitem open="0" type="815" id="1976" label="loadPattern" />
+ <listitem open="0" type="815" id="1977" label="loadPatterns" />
+ <listitem open="0" type="815" id="1978" label="loadpipeBrush" />
+ <listitem open="0" type="815" id="1979" label="loadpipeBrushes" />
+ <listitem open="0" type="815" id="1980" label="patternCount" />
+ <listitem open="0" type="815" id="1981" label="patterns" />
+ <listitem open="0" type="815" id="1982" label="pipebrushCount" />
+ <listitem open="0" type="815" id="1983" label="pipebrushes" />
+ <listitem open="0" type="815" id="1984" label="~KisResourceServer" />
+ </listitem>
+ <listitem open="0" type="813" id="283" label="KisScopedLock" >
+ <listitem open="0" type="814" id="284" label="m_mutex" />
+ <listitem open="0" type="815" id="285" label="KisScopedLock" />
+ <listitem open="0" type="815" id="288" label="lock" />
+ <listitem open="0" type="815" id="289" label="trylock" />
+ <listitem open="0" type="815" id="290" label="unlock" />
+ <listitem open="0" type="815" id="291" label="~KisScopedLock" />
+ </listitem>
+ <listitem open="0" type="813" id="1903" label="KisSelection" >
+ <listitem open="0" type="814" id="1904" label="m_clearOnMove" />
+ <listitem open="0" type="814" id="1905" label="m_clipImg" />
+ <listitem open="0" type="814" id="1906" label="m_firstMove" />
+ <listitem open="0" type="814" id="1907" label="m_img" />
+ <listitem open="0" type="814" id="1908" label="m_name" />
+ <listitem open="0" type="814" id="1909" label="m_parent" />
+ <listitem open="0" type="814" id="1910" label="m_rc" />
+ <listitem open="0" type="815" id="1916" label="KisSelection" />
+ <listitem open="0" type="815" id="1911" label="KisSelection" />
+ <listitem open="0" type="815" id="1921" label="anchor" />
+ <listitem open="0" type="815" id="1922" label="clearParentOnMove" />
+ <listitem open="0" type="815" id="1924" label="commit" />
+ <listitem open="0" type="815" id="1925" label="fromImage" />
+ <listitem open="0" type="815" id="1927" label="move" />
+ <listitem open="0" type="815" id="1930" label="tqparent" />
+ <listitem open="0" type="815" id="1936" label="setBounds" />
+ <listitem open="0" type="815" id="1931" label="setBounds" />
+ <listitem open="0" type="815" id="1938" label="setParent" />
+ <listitem open="0" type="815" id="1940" label="shouldDrawBorder" />
+ <listitem open="0" type="815" id="1941" label="toImage" />
+ <listitem open="0" type="815" id="1942" label="~KisSelection" />
+ </listitem>
+ <listitem open="0" type="813" id="139" label="KisStrategyColorSpace" >
+ <listitem open="0" type="815" id="140" label="=" />
+ <listitem open="0" type="815" id="142" label="KisStrategyColorSpace" />
+ <listitem open="0" type="815" id="143" label="KisStrategyColorSpace" />
+ <listitem open="0" type="815" id="152" label="nativeColor" />
+ <listitem open="0" type="815" id="162" label="nativeColor" />
+ <listitem open="0" type="815" id="155" label="nativeColor" />
+ <listitem open="0" type="815" id="148" label="nativeColor" />
+ <listitem open="0" type="815" id="145" label="nativeColor" />
+ <listitem open="0" type="815" id="159" label="nativeColor" />
+ <listitem open="0" type="815" id="166" label="render" />
+ <listitem open="0" type="815" id="173" label="tileBlt" />
+ <listitem open="0" type="815" id="183" label="tileBlt" />
+ <listitem open="0" type="815" id="192" label="~KisStrategyColorSpace" />
+ </listitem>
+ <listitem open="0" type="813" id="81" label="KisStrategyColorSpaceCMYK" >
+ <listitem open="0" type="814" id="82" label="m_buf" />
+ <listitem open="0" type="814" id="83" label="m_pixio" />
+ <listitem open="0" type="814" id="84" label="m_pixmap" />
+ <listitem open="0" type="814" id="85" label="m_rgbLUT" />
+ <listitem open="0" type="815" id="86" label="KisStrategyColorSpaceCMYK" />
+ <listitem open="0" type="815" id="90" label="nativeColor" />
+ <listitem open="0" type="815" id="97" label="nativeColor" />
+ <listitem open="0" type="815" id="101" label="nativeColor" />
+ <listitem open="0" type="815" id="104" label="nativeColor" />
+ <listitem open="0" type="815" id="94" label="nativeColor" />
+ <listitem open="0" type="815" id="87" label="nativeColor" />
+ <listitem open="0" type="815" id="108" label="render" />
+ <listitem open="0" type="815" id="125" label="tileBlt" />
+ <listitem open="0" type="815" id="115" label="tileBlt" />
+ <listitem open="0" type="815" id="134" label="~KisStrategyColorSpaceCMYK" />
+ </listitem>
+ <listitem open="0" type="813" id="206" label="KisStrategyColorSpaceRGB" >
+ <listitem open="0" type="814" id="207" label="m_buf" />
+ <listitem open="0" type="814" id="208" label="m_pixio" />
+ <listitem open="0" type="814" id="209" label="m_pixmap" />
+ <listitem open="0" type="815" id="210" label="KisStrategyColorSpaceRGB" />
+ <listitem open="0" type="815" id="221" label="nativeColor" />
+ <listitem open="0" type="815" id="211" label="nativeColor" />
+ <listitem open="0" type="815" id="225" label="nativeColor" />
+ <listitem open="0" type="815" id="214" label="nativeColor" />
+ <listitem open="0" type="815" id="218" label="nativeColor" />
+ <listitem open="0" type="815" id="228" label="nativeColor" />
+ <listitem open="0" type="815" id="232" label="render" />
+ <listitem open="0" type="815" id="249" label="tileBlt" />
+ <listitem open="0" type="815" id="239" label="tileBlt" />
+ <listitem open="0" type="815" id="258" label="~KisStrategyColorSpaceRGB" />
+ </listitem>
+ <listitem open="0" type="813" id="292" label="KisStrategyMove" >
+ <listitem open="0" type="814" id="293" label="m_controller" />
+ <listitem open="0" type="814" id="294" label="m_doc" />
+ <listitem open="0" type="814" id="295" label="m_dragStart" />
+ <listitem open="0" type="814" id="296" label="m_dragging" />
+ <listitem open="0" type="814" id="297" label="m_layerPosition" />
+ <listitem open="0" type="814" id="298" label="m_layerStart" />
+ <listitem open="0" type="814" id="299" label="m_subject" />
+ <listitem open="0" type="815" id="300" label="=" />
+ <listitem open="0" type="815" id="305" label="KisStrategyMove" />
+ <listitem open="0" type="815" id="302" label="KisStrategyMove" />
+ <listitem open="0" type="815" id="303" label="KisStrategyMove" />
+ <listitem open="0" type="815" id="307" label="drag" />
+ <listitem open="0" type="815" id="309" label="endDrag" />
+ <listitem open="0" type="815" id="312" label="reset" />
+ <listitem open="0" type="815" id="319" label="simpleMove" />
+ <listitem open="0" type="815" id="314" label="simpleMove" />
+ <listitem open="0" type="815" id="322" label="startDrag" />
+ <listitem open="0" type="815" id="324" label="~KisStrategyMove" />
+ </listitem>
+ <listitem open="0" type="813" id="481" label="KisTile" >
+ <listitem open="0" type="814" id="483" label="m_data" />
+ <listitem open="0" type="814" id="484" label="m_depth" />
+ <listitem open="0" type="814" id="485" label="m_dirty" />
+ <listitem open="0" type="814" id="486" label="m_height" />
+ <listitem open="0" type="814" id="487" label="m_hints" />
+ <listitem open="0" type="814" id="488" label="m_mutex" />
+ <listitem open="0" type="814" id="489" label="m_nref" />
+ <listitem open="0" type="814" id="490" label="m_nshare" />
+ <listitem open="0" type="814" id="491" label="m_nwrite" />
+ <listitem open="0" type="814" id="493" label="m_swapNo" />
+ <listitem open="0" type="814" id="494" label="m_valid" />
+ <listitem open="0" type="814" id="495" label="m_width" />
+ <listitem open="0" type="815" id="496" label="=" />
+ <listitem open="0" type="815" id="500" label="KisTile" />
+ <listitem open="0" type="815" id="498" label="KisTile" />
+ <listitem open="0" type="815" id="504" label="allocate" />
+ <listitem open="0" type="815" id="505" label="data" />
+ <listitem open="0" type="815" id="508" label="depth" />
+ <listitem open="0" type="815" id="509" label="dirty" />
+ <listitem open="0" type="815" id="510" label="dirty" />
+ <listitem open="0" type="815" id="512" label="duplicate" />
+ <listitem open="0" type="815" id="514" label="height" />
+ <listitem open="0" type="815" id="515" label="height" />
+ <listitem open="0" type="815" id="517" label="init" />
+ <listitem open="0" type="815" id="521" label="initRowHints" />
+ <listitem open="0" type="815" id="522" label="lock" />
+ <listitem open="0" type="815" id="523" label="lockAsync" />
+ <listitem open="0" type="815" id="524" label="mutex" />
+ <listitem open="0" type="815" id="525" label="ref" />
+ <listitem open="0" type="815" id="526" label="refCount" />
+ <listitem open="0" type="815" id="527" label="release" />
+ <listitem open="0" type="815" id="528" label="rowHint" />
+ <listitem open="0" type="815" id="530" label="setRowHint" />
+ <listitem open="0" type="815" id="533" label="shareCount" />
+ <listitem open="0" type="815" id="534" label="shareRef" />
+ <listitem open="0" type="815" id="535" label="shareRelease" />
+ <listitem open="0" type="815" id="536" label="size" />
+ <listitem open="0" type="815" id="538" label="valid" />
+ <listitem open="0" type="815" id="537" label="valid" />
+ <listitem open="0" type="815" id="540" label="width" />
+ <listitem open="0" type="815" id="541" label="width" />
+ <listitem open="0" type="815" id="543" label="writeCount" />
+ <listitem open="0" type="815" id="544" label="writeRef" />
+ <listitem open="0" type="815" id="545" label="~KisTile" />
+ </listitem>
+ <listitem open="0" type="813" id="472" label="KisTileCacheInterface" >
+ <listitem open="0" type="815" id="473" label="KisTileCacheInterface" />
+ <listitem open="0" type="815" id="474" label="flush" />
+ <listitem open="0" type="815" id="476" label="insert" />
+ <listitem open="0" type="815" id="478" label="tqsizeHint" />
+ <listitem open="0" type="815" id="480" label="~KisTileCacheInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="1996" label="KisTileCommand" >
+ <listitem open="0" type="814" id="1997" label="m_device" />
+ <listitem open="0" type="814" id="1998" label="m_name" />
+ <listitem open="0" type="814" id="1999" label="m_originals" />
+ <listitem open="0" type="814" id="2000" label="m_rc" />
+ <listitem open="0" type="814" id="2001" label="m_tiles" />
+ <listitem open="0" type="815" id="2005" label="KisTileCommand" />
+ <listitem open="0" type="815" id="2012" label="KisTileCommand" />
+ <listitem open="0" type="815" id="2002" label="KisTileCommand" />
+ <listitem open="0" type="815" id="2016" label="addTile" />
+ <listitem open="0" type="815" id="2019" label="execute" />
+ <listitem open="0" type="815" id="2020" label="name" />
+ <listitem open="0" type="815" id="2021" label="unexecute" />
+ <listitem open="0" type="815" id="2022" label="~KisTileCommand" />
+ </listitem>
+ <listitem open="0" type="813" id="328" label="KisTileMediator" >
+ <listitem open="0" type="814" id="433" label="m_instance" />
+ <listitem open="0" type="814" id="434" label="m_mutex" />
+ <listitem open="0" type="814" id="435" label="m_ref" />
+ <listitem open="0" type="815" id="436" label="=" />
+ <listitem open="0" type="815" id="438" label="KisTileMediator" />
+ <listitem open="0" type="815" id="439" label="KisTileMediator" />
+ <listitem open="0" type="815" id="441" label="attach" />
+ <listitem open="0" type="815" id="445" label="detach" />
+ <listitem open="0" type="815" id="449" label="detachAll" />
+ <listitem open="0" type="815" id="451" label="tileNum" />
+ <listitem open="0" type="815" id="454" label="~KisTileMediator" />
+ </listitem>
+ <listitem open="0" type="813" id="325" label="KisTileMgr" >
+ <listitem open="0" type="814" id="326" label="m_depth" />
+ <listitem open="0" type="814" id="327" label="m_height" />
+ <listitem open="0" type="814" id="330" label="m_mutex" />
+ <listitem open="0" type="814" id="331" label="m_ntileCols" />
+ <listitem open="0" type="814" id="332" label="m_ntileRows" />
+ <listitem open="0" type="814" id="333" label="m_tiles" />
+ <listitem open="0" type="814" id="334" label="m_width" />
+ <listitem open="0" type="815" id="335" label="=" />
+ <listitem open="0" type="815" id="346" label="KisTileMgr" />
+ <listitem open="0" type="815" id="337" label="KisTileMgr" />
+ <listitem open="0" type="815" id="342" label="KisTileMgr" />
+ <listitem open="0" type="815" id="348" label="allocate" />
+ <listitem open="0" type="815" id="350" label="attach" />
+ <listitem open="0" type="815" id="354" label="depth" />
+ <listitem open="0" type="815" id="355" label="detach" />
+ <listitem open="0" type="815" id="359" label="duplicate" />
+ <listitem open="0" type="815" id="362" label="empty" />
+ <listitem open="0" type="815" id="363" label="height" />
+ <listitem open="0" type="815" id="364" label="tqinvalidate" />
+ <listitem open="0" type="815" id="370" label="tqinvalidate" />
+ <listitem open="0" type="815" id="368" label="tqinvalidate" />
+ <listitem open="0" type="815" id="373" label="tqinvalidateTile" />
+ <listitem open="0" type="815" id="376" label="tqinvalidateTiles" />
+ <listitem open="0" type="815" id="378" label="memSize" />
+ <listitem open="0" type="815" id="379" label="ncols" />
+ <listitem open="0" type="815" id="380" label="nrows" />
+ <listitem open="0" type="815" id="381" label="pixelData" />
+ <listitem open="0" type="815" id="387" label="readPixelData" />
+ <listitem open="0" type="815" id="389" label="readPixelData" />
+ <listitem open="0" type="815" id="396" label="releasePixelData" />
+ <listitem open="0" type="815" id="401" label="tile" />
+ <listitem open="0" type="815" id="398" label="tile" />
+ <listitem open="0" type="815" id="408" label="tileCoord" />
+ <listitem open="0" type="815" id="405" label="tileCoord" />
+ <listitem open="0" type="815" id="412" label="tileMap" />
+ <listitem open="0" type="815" id="415" label="tileMap" />
+ <listitem open="0" type="815" id="419" label="tileNum" />
+ <listitem open="0" type="815" id="422" label="width" />
+ <listitem open="0" type="815" id="425" label="writePixelData" />
+ <listitem open="0" type="815" id="423" label="writePixelData" />
+ <listitem open="0" type="815" id="432" label="~KisTileMgr" />
+ </listitem>
+ <listitem open="0" type="813" id="455" label="KisTileSwapInterface" >
+ <listitem open="0" type="815" id="456" label="KisTileSwapInterface" />
+ <listitem open="0" type="815" id="457" label="add" />
+ <listitem open="0" type="815" id="459" label="remove" />
+ <listitem open="0" type="815" id="461" label="swapCompress" />
+ <listitem open="0" type="815" id="463" label="swapDel" />
+ <listitem open="0" type="815" id="465" label="swapIn" />
+ <listitem open="0" type="815" id="467" label="swapInAsync" />
+ <listitem open="0" type="815" id="469" label="swapOut" />
+ <listitem open="0" type="815" id="471" label="~KisTileSwapInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="2135" label="KisTool" >
+ <listitem open="0" type="815" id="2136" label="=" />
+ <listitem open="0" type="815" id="2139" label="KisTool" />
+ <listitem open="0" type="815" id="2138" label="KisTool" />
+ <listitem open="0" type="815" id="2141" label="clear" />
+ <listitem open="0" type="815" id="2142" label="clear" />
+ <listitem open="0" type="815" id="2144" label="cursor" />
+ <listitem open="0" type="815" id="2146" label="enter" />
+ <listitem open="0" type="815" id="2148" label="keyPress" />
+ <listitem open="0" type="815" id="2150" label="keyRelease" />
+ <listitem open="0" type="815" id="2152" label="leave" />
+ <listitem open="0" type="815" id="2154" label="mouseMove" />
+ <listitem open="0" type="815" id="2156" label="mousePress" />
+ <listitem open="0" type="815" id="2158" label="mouseRelease" />
+ <listitem open="0" type="815" id="2160" label="options" />
+ <listitem open="0" type="815" id="2164" label="paint" />
+ <listitem open="0" type="815" id="2162" label="paint" />
+ <listitem open="0" type="815" id="2167" label="setCursor" />
+ <listitem open="0" type="815" id="2169" label="setup" />
+ <listitem open="0" type="815" id="2171" label="tabletEvent" />
+ <listitem open="0" type="815" id="2173" label="~KisTool" />
+ </listitem>
+ <listitem open="0" type="813" id="2203" label="KisToolControllerInterface" >
+ <listitem open="0" type="815" id="2204" label="=" />
+ <listitem open="0" type="815" id="2207" label="KisToolControllerInterface" />
+ <listitem open="0" type="815" id="2206" label="KisToolControllerInterface" />
+ <listitem open="0" type="815" id="2209" label="currentTool" />
+ <listitem open="0" type="815" id="2210" label="setCurrentTool" />
+ <listitem open="0" type="815" id="2212" label="~KisToolControllerInterface" />
+ </listitem>
+ <listitem open="0" type="813" id="2190" label="KisToolFactory" >
+ <listitem open="0" type="814" id="2192" label="m_tools" />
+ <listitem open="0" type="815" id="2193" label="=" />
+ <listitem open="0" type="815" id="2196" label="KisToolFactory" />
+ <listitem open="0" type="815" id="2195" label="KisToolFactory" />
+ <listitem open="0" type="815" id="2198" label="create" />
+ <listitem open="0" type="815" id="2201" label="singleton" />
+ <listitem open="0" type="815" id="2202" label="~KisToolFactory" />
+ </listitem>
+ <listitem open="0" type="813" id="2174" label="KisUndoAdapter" >
+ <listitem open="0" type="815" id="2175" label="=" />
+ <listitem open="0" type="815" id="2178" label="KisUndoAdapter" />
+ <listitem open="0" type="815" id="2177" label="KisUndoAdapter" />
+ <listitem open="0" type="815" id="2180" label="addCommand" />
+ <listitem open="0" type="815" id="2182" label="beginMacro" />
+ <listitem open="0" type="815" id="2184" label="endMacro" />
+ <listitem open="0" type="815" id="2185" label="inMacro" />
+ <listitem open="0" type="815" id="2186" label="setUndo" />
+ <listitem open="0" type="815" id="2188" label="undo" />
+ <listitem open="0" type="815" id="2189" label="~KisUndoAdapter" />
+ </listitem>
+ <listitem open="0" type="813" id="2218" label="KisUtil" >
+ <listitem open="0" type="815" id="2219" label="enlargeRectToContainPoint" />
+ <listitem open="0" type="815" id="2222" label="findBoundingTiles" />
+ <listitem open="0" type="815" id="2224" label="findTileExtents" />
+ <listitem open="0" type="815" id="2226" label="printPoint" />
+ <listitem open="0" type="815" id="2229" label="printRect" />
+ <listitem open="0" type="815" id="2232" label="roughScaleQImage" />
+ </listitem>
+ <listitem open="0" type="813" id="2236" label="KisVector" >
+ <listitem open="0" type="814" id="2237" label="m_x" />
+ <listitem open="0" type="814" id="2238" label="m_y" />
+ <listitem open="0" type="814" id="2239" label="m_z" />
+ <listitem open="0" type="815" id="2240" label="!=" />
+ <listitem open="0" type="815" id="2255" label="*" />
+ <listitem open="0" type="815" id="2258" label="*" />
+ <listitem open="0" type="815" id="2252" label="*" />
+ <listitem open="0" type="815" id="2246" label="*" />
+ <listitem open="0" type="815" id="2249" label="*" />
+ <listitem open="0" type="815" id="2243" label="*" />
+ <listitem open="0" type="815" id="2263" label="*=" />
+ <listitem open="0" type="815" id="2261" label="*=" />
+ <listitem open="0" type="815" id="2265" label="*=" />
+ <listitem open="0" type="815" id="2267" label="+" />
+ <listitem open="0" type="815" id="2270" label="+=" />
+ <listitem open="0" type="815" id="2274" label="-" />
+ <listitem open="0" type="815" id="2272" label="-" />
+ <listitem open="0" type="815" id="2277" label="-=" />
+ <listitem open="0" type="815" id="2279" label="/" />
+ <listitem open="0" type="815" id="2282" label="/" />
+ <listitem open="0" type="815" id="2285" label="/" />
+ <listitem open="0" type="815" id="2292" label="/=" />
+ <listitem open="0" type="815" id="2288" label="/=" />
+ <listitem open="0" type="815" id="2290" label="/=" />
+ <listitem open="0" type="815" id="2294" label="==" />
+ <listitem open="0" type="815" id="2298" label="KisVector" />
+ <listitem open="0" type="815" id="2302" label="KisVector" />
+ <listitem open="0" type="815" id="2306" label="KisVector" />
+ <listitem open="0" type="815" id="2297" label="KisVector" />
+ <listitem open="0" type="815" id="2310" label="crossProduct" />
+ <listitem open="0" type="815" id="2312" label="dotProduct" />
+ <listitem open="0" type="815" id="2314" label="isNull" />
+ <listitem open="0" type="815" id="2315" label="length" />
+ <listitem open="0" type="815" id="2316" label="normalize" />
+ <listitem open="0" type="815" id="2317" label="setX" />
+ <listitem open="0" type="815" id="2319" label="setY" />
+ <listitem open="0" type="815" id="2321" label="setZ" />
+ <listitem open="0" type="815" id="2323" label="x" />
+ <listitem open="0" type="815" id="2324" label="y" />
+ <listitem open="0" type="815" id="2325" label="z" />
+ </listitem>
+ <listitem open="0" type="813" id="2365" label="KisView" >
+ <listitem open="0" type="814" id="2367" label="m_bg" />
+ <listitem open="0" type="814" id="2370" label="m_buildProgress" />
+ <listitem open="0" type="814" id="2371" label="m_canvas" />
+ <listitem open="0" type="814" id="2372" label="m_channelView" />
+ <listitem open="0" type="814" id="2373" label="m_clipboardHasImage" />
+ <listitem open="0" type="814" id="2374" label="m_current" />
+ <listitem open="0" type="814" id="2375" label="m_currentGuide" />
+ <listitem open="0" type="814" id="2376" label="m_dcop" />
+ <listitem open="0" type="814" id="2377" label="m_dlgBrushToggle" />
+ <listitem open="0" type="814" id="2378" label="m_dlgChannelsToggle" />
+ <listitem open="0" type="814" id="2379" label="m_dlgColorsToggle" />
+ <listitem open="0" type="814" id="2380" label="m_dlgLayersToggle" />
+ <listitem open="0" type="814" id="2381" label="m_dlgPatternToggle" />
+ <listitem open="0" type="814" id="2383" label="m_fg" />
+ <listitem open="0" type="814" id="2384" label="m_floatsidebarToggle" />
+ <listitem open="0" type="814" id="2386" label="m_gradientChooser" />
+ <listitem open="0" type="814" id="2387" label="m_hRuler" />
+ <listitem open="0" type="814" id="2388" label="m_hScroll" />
+ <listitem open="0" type="814" id="2389" label="m_imageChooser" />
+ <listitem open="0" type="814" id="2391" label="m_imgDup" />
+ <listitem open="0" type="814" id="2392" label="m_imgExport" />
+ <listitem open="0" type="814" id="2393" label="m_imgImport" />
+ <listitem open="0" type="814" id="2394" label="m_imgMergeAll" />
+ <listitem open="0" type="814" id="2395" label="m_imgMergeLinked" />
+ <listitem open="0" type="814" id="2396" label="m_imgMergeVisible" />
+ <listitem open="0" type="814" id="2397" label="m_imgResize" />
+ <listitem open="0" type="814" id="2398" label="m_imgResizeToLayer" />
+ <listitem open="0" type="814" id="2399" label="m_imgRm" />
+ <listitem open="0" type="814" id="2400" label="m_imgScan" />
+ <listitem open="0" type="814" id="2401" label="m_lastGuidePoint" />
+ <listitem open="0" type="814" id="2402" label="m_layerAdd" />
+ <listitem open="0" type="814" id="2403" label="m_layerBottom" />
+ <listitem open="0" type="814" id="2404" label="m_layerBox" />
+ <listitem open="0" type="814" id="2405" label="m_layerDup" />
+ <listitem open="0" type="814" id="2406" label="m_layerHide" />
+ <listitem open="0" type="814" id="2407" label="m_layerLink" />
+ <listitem open="0" type="814" id="2408" label="m_layerLower" />
+ <listitem open="0" type="814" id="2409" label="m_layerProperties" />
+ <listitem open="0" type="814" id="2410" label="m_layerRaise" />
+ <listitem open="0" type="814" id="2411" label="m_layerResize" />
+ <listitem open="0" type="814" id="2412" label="m_layerResizeToImage" />
+ <listitem open="0" type="814" id="2413" label="m_layerRm" />
+ <listitem open="0" type="814" id="2414" label="m_layerSaveAs" />
+ <listitem open="0" type="814" id="2415" label="m_layerScale" />
+ <listitem open="0" type="814" id="2416" label="m_layerToImage" />
+ <listitem open="0" type="814" id="2417" label="m_layerTop" />
+ <listitem open="0" type="814" id="2418" label="m_lsidebarToggle" />
+ <listitem open="0" type="814" id="2419" label="m_observers" />
+ <listitem open="0" type="814" id="2420" label="m_paletteChooser" />
+ <listitem open="0" type="814" id="2421" label="m_pathView" />
+ <listitem open="0" type="814" id="2424" label="m_selectionCopy" />
+ <listitem open="0" type="814" id="2425" label="m_selectionCrop" />
+ <listitem open="0" type="814" id="2426" label="m_selectionCut" />
+ <listitem open="0" type="814" id="2427" label="m_selectionFillBg" />
+ <listitem open="0" type="814" id="2428" label="m_selectionFillFg" />
+ <listitem open="0" type="814" id="2429" label="m_selectionPaste" />
+ <listitem open="0" type="814" id="2430" label="m_selectionPasteInto" />
+ <listitem open="0" type="814" id="2431" label="m_selectionRm" />
+ <listitem open="0" type="814" id="2432" label="m_selectionSelectAll" />
+ <listitem open="0" type="814" id="2433" label="m_selectionSelectNone" />
+ <listitem open="0" type="814" id="2434" label="m_sideBar" />
+ <listitem open="0" type="814" id="2435" label="m_sidebarToggle" />
+ <listitem open="0" type="814" id="2436" label="m_tabBar" />
+ <listitem open="0" type="814" id="2437" label="m_tabFirst" />
+ <listitem open="0" type="814" id="2438" label="m_tabLast" />
+ <listitem open="0" type="814" id="2439" label="m_tabLeft" />
+ <listitem open="0" type="814" id="2440" label="m_tabRight" />
+ <listitem open="0" type="814" id="2442" label="m_vRuler" />
+ <listitem open="0" type="814" id="2443" label="m_vScroll" />
+ <listitem open="0" type="814" id="2444" label="m_xoff" />
+ <listitem open="0" type="814" id="2445" label="m_yoff" />
+ <listitem open="0" type="814" id="2446" label="m_zoomIn" />
+ <listitem open="0" type="814" id="2447" label="m_zoomOut" />
+ <listitem open="0" type="815" id="2448" label="KisView" />
+ <listitem open="0" type="815" id="2453" label="attach" />
+ <listitem open="0" type="815" id="2455" label="bgColor" />
+ <listitem open="0" type="815" id="2456" label="canvas" />
+ <listitem open="0" type="815" id="2457" label="canvasController" />
+ <listitem open="0" type="815" id="2458" label="canvasXOffset" />
+ <listitem open="0" type="815" id="2459" label="canvasYOffset" />
+ <listitem open="0" type="815" id="2460" label="clearCanvas" />
+ <listitem open="0" type="815" id="2462" label="connectCurrentImg" />
+ <listitem open="0" type="815" id="2463" label="currentBrush" />
+ <listitem open="0" type="815" id="2464" label="currentGradient" />
+ <listitem open="0" type="815" id="2465" label="currentImg" />
+ <listitem open="0" type="815" id="2466" label="currentImgName" />
+ <listitem open="0" type="815" id="2467" label="currentPattern" />
+ <listitem open="0" type="815" id="2468" label="currentTool" />
+ <listitem open="0" type="815" id="2469" label="dcopObject" />
+ <listitem open="0" type="815" id="2470" label="detach" />
+ <listitem open="0" type="815" id="2472" label="disconnectCurrentImg" />
+ <listitem open="0" type="815" id="2473" label="docHeight" />
+ <listitem open="0" type="815" id="2474" label="docWidth" />
+ <listitem open="0" type="815" id="2475" label="document" />
+ <listitem open="0" type="815" id="2476" label="eraseGuides" />
+ <listitem open="0" type="815" id="2477" label="eventFilter" />
+ <listitem open="0" type="815" id="2480" label="fgColor" />
+ <listitem open="0" type="815" id="2481" label="fillSelection" />
+ <listitem open="0" type="815" id="2484" label="guiActivateEvent" />
+ <listitem open="0" type="815" id="2486" label="horzValue" />
+ <listitem open="0" type="815" id="2487" label="imgUpdateGUI" />
+ <listitem open="0" type="815" id="2488" label="importImage" />
+ <listitem open="0" type="815" id="2492" label="layerUpdateGUI" />
+ <listitem open="0" type="815" id="2494" label="notify" />
+ <listitem open="0" type="815" id="2495" label="paintGuides" />
+ <listitem open="0" type="815" id="2496" label="paintView" />
+ <listitem open="0" type="815" id="2498" label="print" />
+ <listitem open="0" type="815" id="2500" label="resizeEvent" />
+ <listitem open="0" type="815" id="2502" label="selectColor" />
+ <listitem open="0" type="815" id="2504" label="selectImage" />
+ <listitem open="0" type="815" id="2506" label="selectionUpdateGUI" />
+ <listitem open="0" type="815" id="2508" label="setBGColor" />
+ <listitem open="0" type="815" id="2510" label="setCurrentTool" />
+ <listitem open="0" type="815" id="2512" label="setFGColor" />
+ <listitem open="0" type="815" id="2514" label="setupActions" />
+ <listitem open="0" type="815" id="2515" label="setupCanvas" />
+ <listitem open="0" type="815" id="2516" label="setupClipboard" />
+ <listitem open="0" type="815" id="2517" label="setupPrinter" />
+ <listitem open="0" type="815" id="2519" label="setupRulers" />
+ <listitem open="0" type="815" id="2520" label="setupScrollBars" />
+ <listitem open="0" type="815" id="2521" label="setupSideBar" />
+ <listitem open="0" type="815" id="2522" label="setupStatusBar" />
+ <listitem open="0" type="815" id="2523" label="setupTabBar" />
+ <listitem open="0" type="815" id="2524" label="setupTools" />
+ <listitem open="0" type="815" id="2525" label="toolController" />
+ <listitem open="0" type="815" id="2526" label="undoAdapter" />
+ <listitem open="0" type="815" id="2528" label="updateCanvas" />
+ <listitem open="0" type="815" id="2527" label="updateCanvas" />
+ <listitem open="0" type="815" id="2533" label="updateCanvas" />
+ <listitem open="0" type="815" id="2535" label="updateGuides" />
+ <listitem open="0" type="815" id="2536" label="updateReadWrite" />
+ <listitem open="0" type="815" id="2538" label="vertValue" />
+ <listitem open="0" type="815" id="2539" label="viewToWindow" />
+ <listitem open="0" type="815" id="2544" label="viewToWindow" />
+ <listitem open="0" type="815" id="2542" label="viewToWindow" />
+ <listitem open="0" type="815" id="2551" label="windowToView" />
+ <listitem open="0" type="815" id="2546" label="windowToView" />
+ <listitem open="0" type="815" id="2549" label="windowToView" />
+ <listitem open="0" type="815" id="2553" label="zoomFactor" />
+ <listitem open="0" type="815" id="2555" label="zoomIn" />
+ <listitem open="0" type="815" id="2554" label="zoomIn" />
+ <listitem open="0" type="815" id="2559" label="zoomOut" />
+ <listitem open="0" type="815" id="2558" label="zoomOut" />
+ <listitem open="0" type="815" id="2562" label="zoomUpdateGUI" />
+ <listitem open="0" type="815" id="2566" label="~KisView" />
+ </listitem>
+ <listitem open="0" type="813" id="2023" label="PluginInfo" >
+ <listitem open="0" type="814" id="2024" label="m_category" />
+ <listitem open="0" type="814" id="2025" label="m_comment" />
+ <listitem open="0" type="814" id="2026" label="m_dir" />
+ <listitem open="0" type="814" id="2027" label="m_id" />
+ <listitem open="0" type="814" id="2028" label="m_library" />
+ <listitem open="0" type="814" id="2029" label="m_name" />
+ <listitem open="0" type="814" id="2030" label="m_type" />
+ <listitem open="0" type="815" id="2031" label="PluginInfo" />
+ <listitem open="0" type="815" id="2038" label="category" />
+ <listitem open="0" type="815" id="2039" label="comment" />
+ <listitem open="0" type="815" id="2040" label="dir" />
+ <listitem open="0" type="815" id="2041" label="id" />
+ <listitem open="0" type="815" id="2042" label="library" />
+ <listitem open="0" type="815" id="2043" label="name" />
+ <listitem open="0" type="815" id="2044" label="setId" />
+ <listitem open="0" type="815" id="2046" label="type" />
+ </listitem>
+ <listitem open="0" type="813" id="135" label="RGB" >
+ <listitem open="0" type="814" id="136" label="b" />
+ <listitem open="0" type="814" id="137" label="g" />
+ <listitem open="0" type="814" id="138" label="r" />
+ </listitem>
+ <listitem open="0" type="830" id="-1" label="Datatypes" >
+ <listitem open="1" type="829" id="1254" label="CHANNELTYPE" />
+ <listitem open="1" type="829" id="280" label="ColorLUT" />
+ <listitem open="1" type="829" id="2346" label="KisBackgroundSP" />
+ <listitem open="1" type="829" id="2339" label="KisChannelSP" />
+ <listitem open="1" type="829" id="2336" label="KisDabSP" />
+ <listitem open="1" type="829" id="1251" label="KisGuideSP" />
+ <listitem open="1" type="829" id="2355" label="KisImageSP" />
+ <listitem open="1" type="829" id="2360" label="KisLayerSP" />
+ <listitem open="1" type="829" id="2354" label="KisMaskSP" />
+ <listitem open="1" type="829" id="2329" label="KisMementoSP" />
+ <listitem open="1" type="829" id="2362" label="KisPaintDeviceSP" />
+ <listitem open="1" type="829" id="2359" label="KisPixelDataSP" />
+ <listitem open="1" type="829" id="2342" label="KisSelectionSP" />
+ <listitem open="1" type="829" id="2345" label="KisStrategyColorSpaceMap" />
+ <listitem open="1" type="829" id="2337" label="KisStrategyColorSpaceSP" />
+ <listitem open="1" type="829" id="2358" label="KisTileMgrSP" />
+ <listitem open="1" type="829" id="2340" label="KisTileSP" />
+ <listitem open="1" type="829" id="554" label="KisTileSPLst" />
+ <listitem open="1" type="829" id="556" label="KisTileSPLst_cit" />
+ <listitem open="1" type="829" id="559" label="KisTileSPLst_it" />
+ <listitem open="1" type="829" id="2363" label="KoColorMap" />
+ <listitem open="1" type="829" id="1255" label="PIXELTYPE" />
+ <listitem open="1" type="829" id="2132" label="PluginInfoList" />
+ <listitem open="1" type="829" id="1253" label="QUANTUM" />
+ <listitem open="1" type="829" id="2133" label="TileMap" />
+ <listitem open="1" type="829" id="282" label="acFlyweights" />
+ <listitem open="1" type="829" id="281" label="acFlyweights_cit" />
+ <listitem open="1" type="829" id="279" label="acFlyweights_it" />
+ <listitem open="1" type="829" id="4" label="bool" />
+ <listitem open="1" type="829" id="3" label="char" />
+ <listitem open="1" type="829" id="6" label="double" />
+ <listitem open="1" type="829" id="5" label="float" />
+ <listitem open="1" type="829" id="2" label="int" />
+ <listitem open="1" type="829" id="7" label="long" />
+ <listitem open="1" type="829" id="8" label="short" />
+ <listitem open="1" type="829" id="78" label="super" />
+ <listitem open="1" type="829" id="79" label="vKisBuilderSubject" />
+ <listitem open="1" type="829" id="80" label="vKisBuilderSubject_cit" />
+ <listitem open="1" type="829" id="77" label="vKisBuilderSubject_it" />
+ <listitem open="1" type="829" id="2571" label="vKisCanvasObserver" />
+ <listitem open="1" type="829" id="2572" label="vKisCanvasObserver_cit" />
+ <listitem open="1" type="829" id="2570" label="vKisCanvasObserver_it" />
+ <listitem open="1" type="829" id="2335" label="vKisChannelSP" />
+ <listitem open="1" type="829" id="2331" label="vKisChannelSP_cit" />
+ <listitem open="1" type="829" id="2328" label="vKisChannelSP_it" />
+ <listitem open="1" type="829" id="1257" label="vKisGuideSP" />
+ <listitem open="1" type="829" id="1256" label="vKisGuideSP_cit" />
+ <listitem open="1" type="829" id="1252" label="vKisGuideSP_it" />
+ <listitem open="1" type="829" id="2333" label="vKisImageSP" />
+ <listitem open="1" type="829" id="2351" label="vKisImageSP_cit" />
+ <listitem open="1" type="829" id="2352" label="vKisImageSP_it" />
+ <listitem open="1" type="829" id="2330" label="vKisLayerSP" />
+ <listitem open="1" type="829" id="2344" label="vKisLayerSP_cit" />
+ <listitem open="1" type="829" id="2347" label="vKisLayerSP_it" />
+ <listitem open="1" type="829" id="2353" label="vKisMaskSP" />
+ <listitem open="1" type="829" id="2348" label="vKisMaskSP_cit" />
+ <listitem open="1" type="829" id="2343" label="vKisMaskSP_it" />
+ <listitem open="1" type="829" id="2332" label="vKisPaintDeviceSP" />
+ <listitem open="1" type="829" id="2349" label="vKisPaintDeviceSP_cit" />
+ <listitem open="1" type="829" id="2350" label="vKisPaintDeviceSP_it" />
+ <listitem open="1" type="829" id="2341" label="vKisSegments" />
+ <listitem open="1" type="829" id="2361" label="vKisTileSP" />
+ <listitem open="1" type="829" id="555" label="vKisTileSPLst" />
+ <listitem open="1" type="829" id="557" label="vKisTileSPLst_cit" />
+ <listitem open="1" type="829" id="558" label="vKisTileSPLst_it" />
+ <listitem open="1" type="829" id="2356" label="vKisTileSP_cit" />
+ <listitem open="1" type="829" id="2338" label="vKisTileSP_it" />
+ <listitem open="1" type="829" id="2327" label="vKisTool" />
+ <listitem open="1" type="829" id="2357" label="vKisTool_cit" />
+ <listitem open="1" type="829" id="2334" label="vKisTool_it" />
+ </listitem>
+ <listitem open="1" type="831" id="1198" label="CompositeOp" />
+ <listitem open="1" type="831" id="55" label="KisImageBuilder_Result" />
+ <listitem open="1" type="831" id="69" label="KisImageBuilder_Step" />
+ <listitem open="1" type="831" id="2129" label="PluginType" />
+ <listitem open="1" type="831" id="546" label="drawingHints" />
+ <listitem open="1" type="831" id="720" label="enumBrushType" />
+ <listitem open="1" type="831" id="1237" label="enumImgType" />
+ </listitem>
+ <listitem open="1" type="802" id="-1" label="Use Case View" />
+ <listitem open="1" type="821" id="-1" label="Component View" />
+ <listitem open="1" type="827" id="-1" label="Deployment View" />
+ </listitem>
+ </listview>
+ <codegeneration>
+ <codegenerator language="Perl" />
+ <codegenerator language="Cpp" >
+ <classifiercodedocument writeOutCode="true" package="" id="9" tqparent_class="9" fileExt=".cpp" fileName="kisbuildersubject" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="10" tag="operation_10" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="11" tag="operation_11" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbuildersubject.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="12" tqparent_class="12" fileExt=".cpp" fileName="kisimagemagickconverter" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagebuilder_result.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="13" tag="hblock_tag_0" canDelete="false" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="13" tag="hblock_tag_1" canDelete="false" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="14" tag="hblock_tag_2" canDelete="false" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="14" tag="hblock_tag_3" canDelete="false" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="15" tag="hblock_tag_4" canDelete="false" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="15" tag="hblock_tag_5" canDelete="false" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="16" tag="hblock_tag_6" canDelete="false" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="16" tag="hblock_tag_7" canDelete="false" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="17" tag="hblock_tag_8" canDelete="false" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="17" tag="hblock_tag_9" canDelete="false" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="18" tag="operation_18" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="20" tag="operation_20" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="23" tag="operation_23" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="25" tag="operation_25" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="28" tag="operation_28" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="31" tag="operation_31" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="33" tag="operation_33" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="36" tag="operation_36" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="37" tag="operation_37" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="40" tag="operation_40" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="41" tag="operation_41" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="42" tag="operation_42" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagemagickconverter.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="13" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="13" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="13" tag="hblock_tag_0" canDelete="false" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="13" tag="hblock_tag_1" canDelete="false" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="14" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="14" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="14" tag="hblock_tag_2" canDelete="false" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="14" tag="hblock_tag_3" canDelete="false" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="15" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="15" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="15" tag="hblock_tag_4" canDelete="false" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="15" tag="hblock_tag_5" canDelete="false" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="16" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="16" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="16" tag="hblock_tag_6" canDelete="false" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="16" tag="hblock_tag_7" canDelete="false" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="17" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="17" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="17" tag="hblock_tag_8" canDelete="false" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="17" tag="hblock_tag_9" canDelete="false" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="44" tqparent_class="44" fileExt=".cpp" fileName="kisbuildermonitor" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;vkisbuildersubject.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="45" tag="hblock_tag_0" canDelete="false" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="45" tag="hblock_tag_1" canDelete="false" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="46" tag="operation_46" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="49" tag="operation_49" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="51" tag="operation_51" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="53" tag="operation_53" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbuildermonitor.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="45" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="45" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="45" tag="hblock_tag_0" canDelete="false" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="45" tag="hblock_tag_1" canDelete="false" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2390" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="55" tqparent_class="55" fileExt=".cpp" fileName="kisimagebuilder_result" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagebuilder_result.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="69" tqparent_class="69" fileExt=".cpp" fileName="kisimagebuilder_step" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagebuilder_step.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="81" tqparent_class="81" fileExt=".cpp" fileName="kisstrategycolorspacecmyk" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;colorlut.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="82" tag="hblock_tag_0" canDelete="false" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="82" tag="hblock_tag_1" canDelete="false" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="83" tag="hblock_tag_2" canDelete="false" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="83" tag="hblock_tag_3" canDelete="false" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="84" tag="hblock_tag_4" canDelete="false" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="84" tag="hblock_tag_5" canDelete="false" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="85" tag="hblock_tag_6" canDelete="false" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="85" tag="hblock_tag_7" canDelete="false" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="86" tag="operation_86" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="87" tag="operation_87" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="90" tag="operation_90" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="94" tag="operation_94" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="97" tag="operation_97" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="101" tag="operation_101" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="104" tag="operation_104" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="108" tag="operation_108" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="115" tag="operation_115" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="125" tag="operation_125" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="134" tag="operation_134" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspacecmyk.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="82" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="82" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="82" tag="hblock_tag_0" canDelete="false" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="82" tag="hblock_tag_1" canDelete="false" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="83" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="83" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="83" tag="hblock_tag_2" canDelete="false" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="83" tag="hblock_tag_3" canDelete="false" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="84" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="84" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="84" tag="hblock_tag_4" canDelete="false" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="84" tag="hblock_tag_5" canDelete="false" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="85" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="85" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="85" tag="hblock_tag_6" canDelete="false" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="85" tag="hblock_tag_7" canDelete="false" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="135" tqparent_class="135" fileExt=".cpp" fileName="rgb" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="136" tag="hblock_tag_0" canDelete="false" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="136" tag="hblock_tag_1" canDelete="false" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="137" tag="hblock_tag_2" canDelete="false" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="137" tag="hblock_tag_3" canDelete="false" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="138" tag="hblock_tag_4" canDelete="false" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="138" tag="hblock_tag_5" canDelete="false" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; rgb.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="136" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="136" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="136" tag="hblock_tag_0" canDelete="false" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="136" tag="hblock_tag_1" canDelete="false" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="137" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="137" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="137" tag="hblock_tag_2" canDelete="false" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="137" tag="hblock_tag_3" canDelete="false" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="138" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="138" tag="hblock_tag_4" canDelete="false" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="138" tag="hblock_tag_5" canDelete="false" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="139" tqparent_class="139" fileExt=".cpp" fileName="kisstrategycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="140" tag="operation_140" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="142" tag="operation_142" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="143" tag="operation_143" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="145" tag="operation_145" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="148" tag="operation_148" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="152" tag="operation_152" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="155" tag="operation_155" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="159" tag="operation_159" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="162" tag="operation_162" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="166" tag="operation_166" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="173" tag="operation_173" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="183" tag="operation_183" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="192" tag="operation_192" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspace.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="193" tqparent_class="193" fileExt=".cpp" fileName="kiscolorspacefactoryinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kiscolorspacefactoryinterface.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_5" canDelete="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_6" canDelete="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="195" tag="operation_195" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="197" tag="operation_197" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="198" tag="operation_198" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="200" tag="operation_200" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="202" tag="operation_202" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="204" tag="operation_204" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="205" tag="operation_205" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscolorspacefactoryinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="194" field_type="1" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="194" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_5" canDelete="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_6" canDelete="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="194" field_type="1" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="194" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="206" tqparent_class="206" fileExt=".cpp" fileName="kisstrategycolorspacergb" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="207" tag="hblock_tag_0" canDelete="false" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="207" tag="hblock_tag_1" canDelete="false" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="208" tag="hblock_tag_2" canDelete="false" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="208" tag="hblock_tag_3" canDelete="false" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="209" tag="hblock_tag_4" canDelete="false" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="209" tag="hblock_tag_5" canDelete="false" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="210" tag="operation_210" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="211" tag="operation_211" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="214" tag="operation_214" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="218" tag="operation_218" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="221" tag="operation_221" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="225" tag="operation_225" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="228" tag="operation_228" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="232" tag="operation_232" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="239" tag="operation_239" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="249" tag="operation_249" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="258" tag="operation_258" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspacergb.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="207" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="207" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="207" tag="hblock_tag_0" canDelete="false" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="207" tag="hblock_tag_1" canDelete="false" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="208" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="208" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="208" tag="hblock_tag_2" canDelete="false" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="208" tag="hblock_tag_3" canDelete="false" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="209" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="209" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="209" tag="hblock_tag_4" canDelete="false" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="209" tag="hblock_tag_5" canDelete="false" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="259" tqparent_class="259" fileExt=".cpp" fileName="cmyk" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="260" tag="hblock_tag_0" canDelete="false" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="260" tag="hblock_tag_1" canDelete="false" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="261" tag="hblock_tag_2" canDelete="false" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="261" tag="hblock_tag_3" canDelete="false" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="262" tag="hblock_tag_4" canDelete="false" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="262" tag="hblock_tag_5" canDelete="false" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="263" tag="hblock_tag_6" canDelete="false" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="263" tag="hblock_tag_7" canDelete="false" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="264" tag="operation_264" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; cmyk.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="260" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="260" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="260" tag="hblock_tag_0" canDelete="false" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="260" tag="hblock_tag_1" canDelete="false" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="261" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="261" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="261" tag="hblock_tag_2" canDelete="false" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="261" tag="hblock_tag_3" canDelete="false" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="262" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="262" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="262" tag="hblock_tag_4" canDelete="false" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="262" tag="hblock_tag_5" canDelete="false" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="263" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="263" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="263" tag="hblock_tag_6" canDelete="false" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="263" tag="hblock_tag_7" canDelete="false" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="266" tqparent_class="266" fileExt=".cpp" fileName="kiscolorspacefactoryflyweight" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;kisstrategycolorspacesp.h&quot;&amp;#010;#include &quot;acflyweights.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="267" tag="hblock_tag_0" canDelete="false" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="267" tag="hblock_tag_1" canDelete="false" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="268" tag="operation_268" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="269" tag="operation_269" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="271" tag="operation_271" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="273" tag="operation_273" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="275" tag="operation_275" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscolorspacefactoryflyweight.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="267" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="267" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="267" tag="hblock_tag_0" canDelete="false" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="267" tag="hblock_tag_1" canDelete="false" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="283" tqparent_class="283" fileExt=".cpp" fileName="kisscopedlock" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="284" tag="hblock_tag_0" canDelete="false" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="284" tag="hblock_tag_1" canDelete="false" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="285" tag="operation_285" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="288" tag="operation_288" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="289" tag="operation_289" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="290" tag="operation_290" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="291" tag="operation_291" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisscopedlock.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:09&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="284" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="284" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="284" tag="hblock_tag_0" canDelete="false" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="284" tag="hblock_tag_1" canDelete="false" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="292" tqparent_class="292" fileExt=".cpp" fileName="kisstrategymove" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="293" tag="hblock_tag_0" canDelete="false" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="293" tag="hblock_tag_1" canDelete="false" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="294" tag="hblock_tag_2" canDelete="false" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="294" tag="hblock_tag_3" canDelete="false" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="295" tag="hblock_tag_4" canDelete="false" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="295" tag="hblock_tag_5" canDelete="false" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="296" tag="hblock_tag_6" canDelete="false" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="296" tag="hblock_tag_7" canDelete="false" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="297" tag="hblock_tag_8" canDelete="false" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="297" tag="hblock_tag_9" canDelete="false" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="298" tag="hblock_tag_10" canDelete="false" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="298" tag="hblock_tag_11" canDelete="false" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="299" tag="hblock_tag_12" canDelete="false" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="299" tag="hblock_tag_13" canDelete="false" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="300" tag="operation_300" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="302" tag="operation_302" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="303" tag="operation_303" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="305" tag="operation_305" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="307" tag="operation_307" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="309" tag="operation_309" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="312" tag="operation_312" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="314" tag="operation_314" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="319" tag="operation_319" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="322" tag="operation_322" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="324" tag="operation_324" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategymove.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:15&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="293" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="293" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="293" tag="hblock_tag_0" canDelete="false" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="293" tag="hblock_tag_1" canDelete="false" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="294" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="294" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="294" tag="hblock_tag_2" canDelete="false" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="294" tag="hblock_tag_3" canDelete="false" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="295" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="295" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="295" tag="hblock_tag_4" canDelete="false" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="295" tag="hblock_tag_5" canDelete="false" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="296" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="296" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="296" tag="hblock_tag_6" canDelete="false" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="296" tag="hblock_tag_7" canDelete="false" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="297" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="297" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="297" tag="hblock_tag_8" canDelete="false" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="297" tag="hblock_tag_9" canDelete="false" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="298" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="298" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="298" tag="hblock_tag_10" canDelete="false" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="298" tag="hblock_tag_11" canDelete="false" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="299" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="299" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="299" tag="hblock_tag_12" canDelete="false" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="299" tag="hblock_tag_13" canDelete="false" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="325" tqparent_class="325" fileExt=".cpp" fileName="kistilemgr" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kispixeldatasp.h&quot;&amp;#010;#include &quot;vkistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="326" tag="hblock_tag_0" canDelete="false" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="326" tag="hblock_tag_1" canDelete="false" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="327" tag="hblock_tag_2" canDelete="false" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="327" tag="hblock_tag_3" canDelete="false" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="330" tag="hblock_tag_4" canDelete="false" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="330" tag="hblock_tag_5" canDelete="false" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="331" tag="hblock_tag_6" canDelete="false" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="331" tag="hblock_tag_7" canDelete="false" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="332" tag="hblock_tag_8" canDelete="false" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="332" tag="hblock_tag_9" canDelete="false" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="333" tag="hblock_tag_10" canDelete="false" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="333" tag="hblock_tag_11" canDelete="false" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="334" tag="hblock_tag_12" canDelete="false" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="334" tag="hblock_tag_13" canDelete="false" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_14" canDelete="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_15" canDelete="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="335" tag="operation_335" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="337" tag="operation_337" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create a new KisTileMgr of width and height with the&amp;#010;specified colour depth. Deep copies the tiles of tm to the&amp;#010;new KisTileMgr.&amp;#010;&amp;#010;XXX: I am not sure what happens when tm is bigger or smaller&amp;#010;than width and height, nor what happens when tm has a&amp;#010;different depth." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="342" tag="operation_342" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create a KisTileMgr of width and height with the specified&amp;#010;colour depth." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="346" tag="operation_346" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Creates a new KisTileMgr based on rhs, shares a reference&amp;#010;to the tiles of rhs." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="348" tag="operation_348" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="350" tag="operation_350" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="354" tag="operation_354" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Color-depth of the KisRenderInterface implementation&amp;#010;managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="355" tag="operation_355" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="359" tag="operation_359" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="362" tag="operation_362" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Returns true if this KisTileMgr does not manage any&amp;#010;tiles." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="363" tag="operation_363" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Height in pixels of the total area managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="364" tag="operation_364" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="368" tag="operation_368" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="370" tag="operation_370" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="373" tag="operation_373" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="376" tag="operation_376" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="378" tag="operation_378" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Total size in memory the data managed by this KisTileMgr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="379" tag="operation_379" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Number of columns of tiles managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="380" tag="operation_380" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Number of rows of tiles managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="381" tag="operation_381" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Returns the KisPixelData defined by the rectangle x1, y1,&amp;#010;x2, y2. Depending on mode, this data is readable, writable&amp;#010;or both." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="387" tag="operation_387" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="389" tag="operation_389" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Read the area defined by x1, y2, x2, y2 into the buffer. Stride is number of bytes&amp;#010;that a pixel takes in the buffer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="396" tag="operation_396" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Not sure what this does... Perhaps write changed data if&amp;#010;owner, else mark something invalid. XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="398" tag="operation_398" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create or duplicate a tile with identity tilenum; tilenum&amp;#010;is computed from the x/y coordinates of the tile in the&amp;#010;image&amp;#010;&amp;#010;XXX: Not sure what 'mode' is. Presumbly related to the&amp;#010;TILEMODE constants." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="401" tag="operation_401" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create or duplicate a tile at location xpix/ypix.&amp;#010;&amp;#010;XXX: Not sure what 'mode' is. Presumbly related to the&amp;#010;TILEMODE constants." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="405" tag="operation_405" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Puts the x/y coordinates of the top left (?) corner&amp;#010;of tile in coord." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="408" tag="operation_408" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Puts the x/y coordinates of the top left (?) corner&amp;#010;of tile in x and y." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="412" tag="operation_412" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="415" tag="operation_415" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="XXX" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="419" tag="operation_419" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="422" tag="operation_422" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Width in pixels of the total area managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="423" tag="operation_423" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="425" tag="operation_425" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Commit the pixel data in buffer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="432" tag="operation_432" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilemgr.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="326" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="326" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="326" tag="hblock_tag_0" canDelete="false" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="326" tag="hblock_tag_1" canDelete="false" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="327" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="327" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="327" tag="hblock_tag_2" canDelete="false" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="327" tag="hblock_tag_3" canDelete="false" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="330" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="330" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="330" tag="hblock_tag_4" canDelete="false" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="330" tag="hblock_tag_5" canDelete="false" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="331" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="331" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="331" tag="hblock_tag_6" canDelete="false" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="331" tag="hblock_tag_7" canDelete="false" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="332" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="332" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="332" tag="hblock_tag_8" canDelete="false" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="332" tag="hblock_tag_9" canDelete="false" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="333" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="333" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="333" tag="hblock_tag_10" canDelete="false" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="333" tag="hblock_tag_11" canDelete="false" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="334" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="334" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="334" tag="hblock_tag_12" canDelete="false" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="334" tag="hblock_tag_13" canDelete="false" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="329" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_14" canDelete="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_15" canDelete="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="328" tqparent_class="328" fileExt=".cpp" fileName="kistilemediator" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="433" tag="hblock_tag_0" canDelete="false" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="433" tag="hblock_tag_1" canDelete="false" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="434" tag="hblock_tag_2" canDelete="false" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="434" tag="hblock_tag_3" canDelete="false" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="435" tag="hblock_tag_4" canDelete="false" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="435" tag="hblock_tag_5" canDelete="false" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="436" tag="operation_436" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="438" tag="operation_438" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="439" tag="operation_439" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="441" tag="operation_441" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="445" tag="operation_445" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="449" tag="operation_449" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="451" tag="operation_451" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="454" tag="operation_454" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilemediator.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="433" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="433" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="433" tag="hblock_tag_0" canDelete="false" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="433" tag="hblock_tag_1" canDelete="false" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="434" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="434" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="434" tag="hblock_tag_2" canDelete="false" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="434" tag="hblock_tag_3" canDelete="false" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="435" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="435" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="435" tag="hblock_tag_4" canDelete="false" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="435" tag="hblock_tag_5" canDelete="false" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="329" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="455" tqparent_class="455" fileExt=".cpp" fileName="kistileswapinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="456" tag="operation_456" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="457" tag="operation_457" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="459" tag="operation_459" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="461" tag="operation_461" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="463" tag="operation_463" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="465" tag="operation_465" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="467" tag="operation_467" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="469" tag="operation_469" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="471" tag="operation_471" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistileswapinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="492" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="472" tqparent_class="472" fileExt=".cpp" fileName="kistilecacheinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="473" tag="operation_473" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="474" tag="operation_474" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="476" tag="operation_476" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="478" tag="operation_478" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="480" tag="operation_480" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilecacheinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:01&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="482" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="481" tqparent_class="481" fileExt=".cpp" fileName="kistile" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;drawinghints.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="483" tag="hblock_tag_0" canDelete="false" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="483" tag="hblock_tag_1" canDelete="false" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="484" tag="hblock_tag_2" canDelete="false" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="484" tag="hblock_tag_3" canDelete="false" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="485" tag="hblock_tag_4" canDelete="false" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="485" tag="hblock_tag_5" canDelete="false" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="486" tag="hblock_tag_6" canDelete="false" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="486" tag="hblock_tag_7" canDelete="false" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="487" tag="hblock_tag_8" canDelete="false" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="487" tag="hblock_tag_9" canDelete="false" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="488" tag="hblock_tag_10" canDelete="false" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="488" tag="hblock_tag_11" canDelete="false" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="489" tag="hblock_tag_12" canDelete="false" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="489" tag="hblock_tag_13" canDelete="false" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="490" tag="hblock_tag_14" canDelete="false" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="490" tag="hblock_tag_15" canDelete="false" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="491" tag="hblock_tag_16" canDelete="false" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="491" tag="hblock_tag_17" canDelete="false" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="493" tag="hblock_tag_18" canDelete="false" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="493" tag="hblock_tag_19" canDelete="false" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="494" tag="hblock_tag_20" canDelete="false" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="494" tag="hblock_tag_21" canDelete="false" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="495" tag="hblock_tag_22" canDelete="false" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="495" tag="hblock_tag_23" canDelete="false" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_24" canDelete="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_25" canDelete="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_27" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_28" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_29" canDelete="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_30" canDelete="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_32" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_33" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="498" tag="operation_498" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="500" tag="operation_500" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="504" tag="operation_504" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="505" tag="operation_505" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="508" tag="operation_508" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="509" tag="operation_509" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="510" tag="operation_510" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="512" tag="operation_512" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="514" tag="operation_514" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="515" tag="operation_515" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="517" tag="operation_517" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="521" tag="operation_521" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="522" tag="operation_522" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="523" tag="operation_523" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="524" tag="operation_524" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="525" tag="operation_525" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="526" tag="operation_526" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="527" tag="operation_527" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="528" tag="operation_528" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="530" tag="operation_530" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="533" tag="operation_533" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="534" tag="operation_534" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="535" tag="operation_535" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="536" tag="operation_536" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="537" tag="operation_537" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="538" tag="operation_538" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="540" tag="operation_540" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="541" tag="operation_541" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="543" tag="operation_543" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="544" tag="operation_544" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="545" tag="operation_545" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistile.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:10&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="483" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="483" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="483" tag="hblock_tag_0" canDelete="false" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="483" tag="hblock_tag_1" canDelete="false" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="484" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="484" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="484" tag="hblock_tag_2" canDelete="false" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="484" tag="hblock_tag_3" canDelete="false" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="485" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="485" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="485" tag="hblock_tag_4" canDelete="false" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="485" tag="hblock_tag_5" canDelete="false" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="486" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="486" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="486" tag="hblock_tag_6" canDelete="false" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="486" tag="hblock_tag_7" canDelete="false" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="487" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="487" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="487" tag="hblock_tag_8" canDelete="false" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="487" tag="hblock_tag_9" canDelete="false" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="488" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="488" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="488" tag="hblock_tag_10" canDelete="false" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="488" tag="hblock_tag_11" canDelete="false" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="489" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="489" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="489" tag="hblock_tag_12" canDelete="false" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="489" tag="hblock_tag_13" canDelete="false" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="490" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="490" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="490" tag="hblock_tag_14" canDelete="false" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="490" tag="hblock_tag_15" canDelete="false" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="491" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="491" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="491" tag="hblock_tag_16" canDelete="false" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="491" tag="hblock_tag_17" canDelete="false" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="493" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="493" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="493" tag="hblock_tag_18" canDelete="false" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="493" tag="hblock_tag_19" canDelete="false" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="494" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="494" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="494" tag="hblock_tag_20" canDelete="false" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="494" tag="hblock_tag_21" canDelete="false" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="495" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="495" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="495" tag="hblock_tag_22" canDelete="false" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="495" tag="hblock_tag_23" canDelete="false" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="482" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_24" canDelete="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_25" canDelete="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_27" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_28" canDelete="false" writeOutText="false" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="492" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_29" canDelete="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_30" canDelete="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_32" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_33" canDelete="false" writeOutText="false" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="546" tqparent_class="546" fileExt=".cpp" fileName="drawinghints" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; drawinghints.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="560" tqparent_class="560" fileExt=".cpp" fileName="kismerge" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="561" tag="hblock_tag_0" canDelete="false" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="561" tag="hblock_tag_1" canDelete="false" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="562" tag="hblock_tag_2" canDelete="false" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="562" tag="hblock_tag_3" canDelete="false" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="563" tag="hblock_tag_4" canDelete="false" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="563" tag="hblock_tag_5" canDelete="false" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="564" tag="hblock_tag_6" canDelete="false" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="564" tag="hblock_tag_7" canDelete="false" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="565" tag="operation_565" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="568" tag="operation_568" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="571" tag="operation_571" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="574" tag="operation_574" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="577" tag="operation_577" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismerge.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="561" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="561" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="561" tag="hblock_tag_0" canDelete="false" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="561" tag="hblock_tag_1" canDelete="false" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="562" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="562" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="562" tag="hblock_tag_2" canDelete="false" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="562" tag="hblock_tag_3" canDelete="false" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="563" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="563" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="563" tag="hblock_tag_4" canDelete="false" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="563" tag="hblock_tag_5" canDelete="false" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="564" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="564" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="564" tag="hblock_tag_6" canDelete="false" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="564" tag="hblock_tag_7" canDelete="false" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="583" tqparent_class="583" fileExt=".cpp" fileName="kisflatten" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="584" tag="hblock_tag_0" canDelete="false" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="584" tag="hblock_tag_1" canDelete="false" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="585" tag="hblock_tag_2" canDelete="false" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="585" tag="hblock_tag_3" canDelete="false" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="586" tag="operation_586" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="588" tag="operation_588" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="593" tag="operation_593" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="596" tag="operation_596" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="599" tag="operation_599" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="603" tag="operation_603" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="606" tag="operation_606" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="612" tag="operation_612" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisflatten.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="584" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="584" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="584" tag="hblock_tag_0" canDelete="false" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="584" tag="hblock_tag_1" canDelete="false" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="585" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="585" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="585" tag="hblock_tag_2" canDelete="false" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="585" tag="hblock_tag_3" canDelete="false" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="613" tqparent_class="613" fileExt=".cpp" fileName="kisdociface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="614" tag="hblock_tag_0" canDelete="false" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="614" tag="hblock_tag_1" canDelete="false" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="615" tag="operation_615" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="616" tag="operation_616" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="623" tag="operation_623" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisdociface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:51&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="614" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="614" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="614" tag="hblock_tag_0" canDelete="false" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="614" tag="hblock_tag_1" canDelete="false" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="624" tqparent_class="624" fileExt=".cpp" fileName="kisalphatqmask" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="625" tag="hblock_tag_0" canDelete="false" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="625" tag="hblock_tag_1" canDelete="false" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="626" tag="hblock_tag_2" canDelete="false" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="626" tag="hblock_tag_3" canDelete="false" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="627" tag="hblock_tag_4" canDelete="false" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="627" tag="hblock_tag_5" canDelete="false" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="628" tag="hblock_tag_6" canDelete="false" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="628" tag="hblock_tag_7" canDelete="false" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="629" tag="operation_629" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create an alpha tqmask based on the gray values of the&amp;#010;specified QImage. If the QImage is not grayscale, you're&amp;#010;buggered." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="631" tag="operation_631" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Create an alpha tqmask based on the gray values of the&amp;#010;specified QImage. If the QImage is not grayscale, you're&amp;#010;buggered. The QImage is scaled using QImage::smoothScale,&amp;#010;where the target w and h are computed by taking scale as a&amp;#010;percentage." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="634" tag="operation_634" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the alpha value at the specified position.&amp;#010;Returns QUANTUM OPACITY_TRANSPARENT if the value is&amp;#010;outside the bounds of the tqmask.&amp;#010;XXX: this is, of course, not the best way of tqmasking.&amp;#010;Better would be to let KisAlphaMask fill a chunk of memory&amp;#010;with the alpha values at the right position, something like&amp;#010;void applyMask(QUANTUM *pixeldata, Q_INT32 pixelWidth,&amp;#010;Q_INT32 alphaPos). That would be fastest, or we could&amp;#010;provide an iterator over the tqmask, that would be nice, too." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="637" tag="operation_637" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="639" tag="operation_639" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="641" tag="operation_641" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the number of alpha values in a scanline." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="642" tag="operation_642" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the scale factor." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="643" tag="operation_643" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the number of lines in the tqmask." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="644" tag="operation_644" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisalphatqmask.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:52:01&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="625" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="625" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="625" tag="hblock_tag_0" canDelete="false" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="625" tag="hblock_tag_1" canDelete="false" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="626" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="626" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="626" tag="hblock_tag_2" canDelete="false" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="626" tag="hblock_tag_3" canDelete="false" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="627" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="627" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="627" tag="hblock_tag_4" canDelete="false" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="627" tag="hblock_tag_5" canDelete="false" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="628" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="628" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="628" tag="hblock_tag_6" canDelete="false" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="628" tag="hblock_tag_7" canDelete="false" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="645" tqparent_class="645" fileExt=".cpp" fileName="krayonviewiface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="646" tag="hblock_tag_0" canDelete="false" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="646" tag="hblock_tag_1" canDelete="false" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="647" tag="operation_647" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="649" tag="operation_649" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="651" tag="operation_651" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="652" tag="operation_652" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="653" tag="operation_653" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="654" tag="operation_654" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="655" tag="operation_655" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="656" tag="operation_656" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="657" tag="operation_657" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="658" tag="operation_658" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="659" tag="operation_659" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="660" tag="operation_660" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="661" tag="operation_661" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="662" tag="operation_662" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="663" tag="operation_663" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="664" tag="operation_664" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="665" tag="operation_665" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="666" tag="operation_666" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="667" tag="operation_667" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="668" tag="operation_668" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="669" tag="operation_669" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; krayonviewiface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="646" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="646" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="646" tag="hblock_tag_0" canDelete="false" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="646" tag="hblock_tag_1" canDelete="false" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="670" tqparent_class="670" fileExt=".cpp" fileName="kisimageiface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_0" canDelete="false" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_1" canDelete="false" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="672" tag="operation_672" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="674" tag="operation_674" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="675" tag="operation_675" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="676" tag="operation_676" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="677" tag="operation_677" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="678" tag="operation_678" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="680" tag="operation_680" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimageiface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:42&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="671" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="671" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_0" canDelete="false" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_1" canDelete="false" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="681" tqparent_class="681" fileExt=".cpp" fileName="kisbrush" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisresource.h&quot;&amp;#010;#include &quot;enumbrushtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="682" tag="hblock_tag_0" canDelete="false" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="682" tag="hblock_tag_1" canDelete="false" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="683" tag="hblock_tag_2" canDelete="false" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="683" tag="hblock_tag_3" canDelete="false" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_4" canDelete="false" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_5" canDelete="false" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="685" tag="hblock_tag_6" canDelete="false" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="685" tag="hblock_tag_7" canDelete="false" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_8" canDelete="false" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_9" canDelete="false" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_10" canDelete="false" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_11" canDelete="false" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_12" canDelete="false" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_13" canDelete="false" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_14" canDelete="false" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_15" canDelete="false" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="690" tag="hblock_tag_16" canDelete="false" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="690" tag="hblock_tag_17" canDelete="false" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="691" tag="hblock_tag_18" canDelete="false" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="691" tag="hblock_tag_19" canDelete="false" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="692" tag="hblock_tag_20" canDelete="false" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="692" tag="hblock_tag_21" canDelete="false" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_27" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_28" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_29" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_30" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="693" tag="operation_693" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="700" tag="operation_700" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="702" tag="operation_702" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="703" tag="operation_703" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="704" tag="operation_704" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="705" tag="operation_705" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return a tqmask computed from the grey-level values of the&amp;#010;pixels in the brush." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="707" tag="operation_707" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="710" tag="operation_710" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbrush.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="682" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="682" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="682" tag="hblock_tag_0" canDelete="false" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="682" tag="hblock_tag_1" canDelete="false" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="683" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="683" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="683" tag="hblock_tag_2" canDelete="false" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="683" tag="hblock_tag_3" canDelete="false" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="684" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="684" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_4" canDelete="false" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_5" canDelete="false" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="685" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="685" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="685" tag="hblock_tag_6" canDelete="false" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="685" tag="hblock_tag_7" canDelete="false" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="686" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="686" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_8" canDelete="false" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_9" canDelete="false" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="687" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="687" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_10" canDelete="false" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_11" canDelete="false" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="688" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="688" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_12" canDelete="false" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_13" canDelete="false" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="689" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="689" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_14" canDelete="false" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_15" canDelete="false" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="690" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="690" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="690" tag="hblock_tag_16" canDelete="false" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="690" tag="hblock_tag_17" canDelete="false" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="691" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="691" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="691" tag="hblock_tag_18" canDelete="false" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="691" tag="hblock_tag_19" canDelete="false" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="692" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="692" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="692" tag="hblock_tag_20" canDelete="false" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="692" tag="hblock_tag_21" canDelete="false" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1769" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2368" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_27" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_28" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_29" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_30" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="711" tqparent_class="711" fileExt=".cpp" fileName="kisbackground" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="712" tag="operation_712" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="716" tag="operation_716" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="719" tag="operation_719" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbackground.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="720" tqparent_class="720" fileExt=".cpp" fileName="enumbrushtype" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; enumbrushtype.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1742" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="727" tqparent_class="727" fileExt=".cpp" fileName="kiscommand" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="728" tag="hblock_tag_0" canDelete="false" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="728" tag="hblock_tag_1" canDelete="false" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="729" tag="hblock_tag_2" canDelete="false" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="729" tag="hblock_tag_3" canDelete="false" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="730" tag="operation_730" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="732" tag="operation_732" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="735" tag="operation_735" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="736" tag="operation_736" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="737" tag="operation_737" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="738" tag="operation_738" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="739" tag="operation_739" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscommand.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="728" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="728" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="728" tag="hblock_tag_0" canDelete="false" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="728" tag="hblock_tag_1" canDelete="false" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="729" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="729" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="729" tag="hblock_tag_2" canDelete="false" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="729" tag="hblock_tag_3" canDelete="false" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="740" tqparent_class="740" fileExt=".cpp" fileName="kisguide" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="741" tag="hblock_tag_0" canDelete="false" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="741" tag="hblock_tag_1" canDelete="false" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="742" tag="hblock_tag_2" canDelete="false" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="742" tag="hblock_tag_3" canDelete="false" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="743" tag="hblock_tag_4" canDelete="false" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="743" tag="hblock_tag_5" canDelete="false" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="744" tag="hblock_tag_6" canDelete="false" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="744" tag="hblock_tag_7" canDelete="false" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="745" tag="operation_745" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="747" tag="operation_747" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="748" tag="operation_748" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="749" tag="operation_749" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisguide.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="741" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="741" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="741" tag="hblock_tag_0" canDelete="false" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="741" tag="hblock_tag_1" canDelete="false" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="742" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="742" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="742" tag="hblock_tag_2" canDelete="false" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="742" tag="hblock_tag_3" canDelete="false" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="743" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="743" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="743" tag="hblock_tag_4" canDelete="false" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="743" tag="hblock_tag_5" canDelete="false" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="744" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="744" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="744" tag="hblock_tag_6" canDelete="false" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="744" tag="hblock_tag_7" canDelete="false" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="750" tqparent_class="750" fileExt=".cpp" fileName="kiscanvascontrollerinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="751" tag="operation_751" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="753" tag="operation_753" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="754" tag="operation_754" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="756" tag="operation_756" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="757" tag="operation_757" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="758" tag="operation_758" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="759" tag="operation_759" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="764" tag="operation_764" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="766" tag="operation_766" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="767" tag="operation_767" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="770" tag="operation_770" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="772" tag="operation_772" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="774" tag="operation_774" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="777" tag="operation_777" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="781" tag="operation_781" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="782" tag="operation_782" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="785" tag="operation_785" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="786" tag="operation_786" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="789" tag="operation_789" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvascontrollerinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:33&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="790" tqparent_class="790" fileExt=".cpp" fileName="kisguidemgr" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisguidesp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;vkisguidesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="791" tag="hblock_tag_0" canDelete="false" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="791" tag="hblock_tag_1" canDelete="false" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="792" tag="hblock_tag_2" canDelete="false" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="792" tag="hblock_tag_3" canDelete="false" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="793" tag="hblock_tag_4" canDelete="false" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="793" tag="hblock_tag_5" canDelete="false" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="794" tag="hblock_tag_6" canDelete="false" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="794" tag="hblock_tag_7" canDelete="false" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="795" tag="hblock_tag_8" canDelete="false" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="795" tag="hblock_tag_9" canDelete="false" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="hblock_tag_10" canDelete="false" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="hblock_tag_11" canDelete="false" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="797" tag="hblock_tag_12" canDelete="false" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="797" tag="hblock_tag_13" canDelete="false" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="798" tag="hblock_tag_14" canDelete="false" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="798" tag="hblock_tag_15" canDelete="false" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="799" tag="hblock_tag_16" canDelete="false" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="799" tag="hblock_tag_17" canDelete="false" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="800" tag="hblock_tag_18" canDelete="false" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="800" tag="hblock_tag_19" canDelete="false" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="801" tag="hblock_tag_20" canDelete="false" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="801" tag="hblock_tag_21" canDelete="false" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="802" tag="operation_802" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="803" tag="operation_803" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="806" tag="operation_806" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="812" tag="operation_812" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="816" tag="operation_816" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="819" tag="operation_819" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="822" tag="operation_822" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="823" tag="operation_823" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="825" tag="operation_825" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="827" tag="operation_827" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="835" tag="operation_835" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="837" tag="operation_837" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="838" tag="operation_838" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="839" tag="operation_839" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="841" tag="operation_841" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="846" tag="operation_846" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="848" tag="operation_848" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="850" tag="operation_850" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="851" tag="operation_851" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="852" tag="operation_852" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="854" tag="operation_854" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="855" tag="operation_855" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisguidemgr.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="791" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="791" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="791" tag="hblock_tag_0" canDelete="false" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="791" tag="hblock_tag_1" canDelete="false" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="792" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="792" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="792" tag="hblock_tag_2" canDelete="false" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="792" tag="hblock_tag_3" canDelete="false" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="793" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="793" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="793" tag="hblock_tag_4" canDelete="false" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="793" tag="hblock_tag_5" canDelete="false" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="794" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="794" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="794" tag="hblock_tag_6" canDelete="false" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="794" tag="hblock_tag_7" canDelete="false" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="795" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="795" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="795" tag="hblock_tag_8" canDelete="false" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="795" tag="hblock_tag_9" canDelete="false" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="796" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="796" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="hblock_tag_10" canDelete="false" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="hblock_tag_11" canDelete="false" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="797" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="797" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="797" tag="hblock_tag_12" canDelete="false" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="797" tag="hblock_tag_13" canDelete="false" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="798" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="798" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="798" tag="hblock_tag_14" canDelete="false" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="798" tag="hblock_tag_15" canDelete="false" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="799" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="799" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="799" tag="hblock_tag_16" canDelete="false" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="799" tag="hblock_tag_17" canDelete="false" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="800" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="800" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="800" tag="hblock_tag_18" canDelete="false" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="800" tag="hblock_tag_19" canDelete="false" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="801" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="801" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="801" tag="hblock_tag_20" canDelete="false" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="801" tag="hblock_tag_21" canDelete="false" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1270" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="856" tqparent_class="856" fileExt=".cpp" fileName="kisgradient" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="857" tag="hblock_tag_0" canDelete="false" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="857" tag="hblock_tag_1" canDelete="false" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="858" tag="hblock_tag_2" canDelete="false" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="858" tag="hblock_tag_3" canDelete="false" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="859" tag="hblock_tag_4" canDelete="false" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="859" tag="hblock_tag_5" canDelete="false" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_6" canDelete="false" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_7" canDelete="false" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="861" tag="operation_861" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="862" tag="operation_862" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="865" tag="operation_865" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="869" tag="operation_869" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="875" tag="operation_875" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="876" tag="operation_876" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="879" tag="operation_879" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="887" tag="operation_887" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="891" tag="operation_891" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="897" tag="operation_897" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="899" tag="operation_899" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="900" tag="operation_900" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="901" tag="operation_901" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisgradient.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="857" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="857" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="857" tag="hblock_tag_0" canDelete="false" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="857" tag="hblock_tag_1" canDelete="false" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="858" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="858" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="858" tag="hblock_tag_2" canDelete="false" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="858" tag="hblock_tag_3" canDelete="false" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="859" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="859" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="859" tag="hblock_tag_4" canDelete="false" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="859" tag="hblock_tag_5" canDelete="false" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="860" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_6" canDelete="false" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_7" canDelete="false" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1776" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2385" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="902" tqparent_class="902" fileExt=".cpp" fileName="kisdoc" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisstrategycolorspacemap.h&quot;&amp;#010;#include &quot;vkisimagesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="903" tag="hblock_tag_0" canDelete="false" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="903" tag="hblock_tag_1" canDelete="false" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="904" tag="hblock_tag_2" canDelete="false" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="904" tag="hblock_tag_3" canDelete="false" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="905" tag="hblock_tag_4" canDelete="false" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="905" tag="hblock_tag_5" canDelete="false" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="906" tag="hblock_tag_6" canDelete="false" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="906" tag="hblock_tag_7" canDelete="false" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="907" tag="hblock_tag_8" canDelete="false" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="907" tag="hblock_tag_9" canDelete="false" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="908" tag="hblock_tag_10" canDelete="false" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="908" tag="hblock_tag_11" canDelete="false" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="909" tag="hblock_tag_12" canDelete="false" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="909" tag="hblock_tag_13" canDelete="false" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="910" tag="hblock_tag_14" canDelete="false" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="910" tag="hblock_tag_15" canDelete="false" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_16" canDelete="false" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_17" canDelete="false" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_18" canDelete="false" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_19" canDelete="false" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_20" canDelete="false" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_21" canDelete="false" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="914" tag="operation_914" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="920" tag="operation_920" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="922" tag="operation_922" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="924" tag="operation_924" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="927" tag="operation_927" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="931" tag="operation_931" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="933" tag="operation_933" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="936" tag="operation_936" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="939" tag="operation_939" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="941" tag="operation_941" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="943" tag="operation_943" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="946" tag="operation_946" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="949" tag="operation_949" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="950" tag="operation_950" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="951" tag="operation_951" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="952" tag="operation_952" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="956" tag="operation_956" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="965" tag="operation_965" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="971" tag="operation_971" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="975" tag="operation_975" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="978" tag="operation_978" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="981" tag="operation_981" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="987" tag="operation_987" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="990" tag="operation_990" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="993" tag="operation_993" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="995" tag="operation_995" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="998" tag="operation_998" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1001" tag="operation_1001" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1005" tag="operation_1005" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1007" tag="operation_1007" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1012" tag="operation_1012" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1013" tag="operation_1013" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1014" tag="operation_1014" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1020" tag="operation_1020" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1021" tag="operation_1021" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1023" tag="operation_1023" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1025" tag="operation_1025" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1028" tag="operation_1028" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1031" tag="operation_1031" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1034" tag="operation_1034" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1037" tag="operation_1037" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1038" tag="operation_1038" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1040" tag="operation_1040" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1046" tag="operation_1046" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1048" tag="operation_1048" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1050" tag="operation_1050" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1052" tag="operation_1052" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1055" tag="operation_1055" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1056" tag="operation_1056" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1057" tag="operation_1057" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisdoc.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="903" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="903" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="903" tag="hblock_tag_0" canDelete="false" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="903" tag="hblock_tag_1" canDelete="false" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="904" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="904" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="904" tag="hblock_tag_2" canDelete="false" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="904" tag="hblock_tag_3" canDelete="false" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="905" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="905" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="905" tag="hblock_tag_4" canDelete="false" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="905" tag="hblock_tag_5" canDelete="false" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="906" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="906" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="906" tag="hblock_tag_6" canDelete="false" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="906" tag="hblock_tag_7" canDelete="false" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="907" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="907" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="907" tag="hblock_tag_8" canDelete="false" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="907" tag="hblock_tag_9" canDelete="false" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="908" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="908" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="908" tag="hblock_tag_10" canDelete="false" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="908" tag="hblock_tag_11" canDelete="false" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="909" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="909" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="909" tag="hblock_tag_12" canDelete="false" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="909" tag="hblock_tag_13" canDelete="false" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="910" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="910" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="910" tag="hblock_tag_14" canDelete="false" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="910" tag="hblock_tag_15" canDelete="false" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="911" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="911" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_16" canDelete="false" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_17" canDelete="false" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="912" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="912" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_18" canDelete="false" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_19" canDelete="false" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="913" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="913" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_20" canDelete="false" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_21" canDelete="false" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2382" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_26" canDelete="false" writeOutText="false" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1058" tqparent_class="1058" fileExt=".cpp" fileName="kiscursor" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1059" tag="operation_1059" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1060" tag="operation_1060" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1061" tag="operation_1061" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1062" tag="operation_1062" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1063" tag="operation_1063" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1065" tag="operation_1065" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1066" tag="operation_1066" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1067" tag="operation_1067" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1068" tag="operation_1068" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1069" tag="operation_1069" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1070" tag="operation_1070" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1071" tag="operation_1071" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1072" tag="operation_1072" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1073" tag="operation_1073" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1074" tag="operation_1074" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1075" tag="operation_1075" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1076" tag="operation_1076" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1077" tag="operation_1077" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1078" tag="operation_1078" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1079" tag="operation_1079" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1080" tag="operation_1080" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1081" tag="operation_1081" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1082" tag="operation_1082" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1083" tag="operation_1083" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscursor.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1085" tqparent_class="1085" fileExt=".cpp" fileName="kisconfig" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1086" tag="hblock_tag_0" canDelete="false" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1086" tag="hblock_tag_1" canDelete="false" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1087" tag="operation_1087" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1089" tag="operation_1089" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1090" tag="operation_1090" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1092" tag="operation_1092" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1093" tag="operation_1093" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1095" tag="operation_1095" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1096" tag="operation_1096" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1097" tag="operation_1097" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1098" tag="operation_1098" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1099" tag="operation_1099" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1100" tag="operation_1100" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisconfig.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1086" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1086" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1086" tag="hblock_tag_0" canDelete="false" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1086" tag="hblock_tag_1" canDelete="false" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1101" tqparent_class="1101" fileExt=".cpp" fileName="kiscanvasobserver" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1102" tag="operation_1102" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1104" tag="operation_1104" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1105" tag="operation_1105" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1107" tag="operation_1107" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1109" tag="operation_1109" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvasobserver.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1110" tqparent_class="1110" fileExt=".cpp" fileName="kisfactory" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1111" tag="hblock_tag_0" canDelete="false" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1111" tag="hblock_tag_1" canDelete="false" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1112" tag="hblock_tag_2" canDelete="false" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1112" tag="hblock_tag_3" canDelete="false" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1113" tag="hblock_tag_4" canDelete="false" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1113" tag="hblock_tag_5" canDelete="false" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1114" tag="hblock_tag_6" canDelete="false" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1114" tag="hblock_tag_7" canDelete="false" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1115" tag="operation_1115" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1118" tag="operation_1118" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1119" tag="operation_1119" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1126" tag="operation_1126" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1127" tag="operation_1127" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1128" tag="operation_1128" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1129" tag="operation_1129" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisfactory.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1111" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1111" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1111" tag="hblock_tag_0" canDelete="false" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1111" tag="hblock_tag_1" canDelete="false" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1112" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1112" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1112" tag="hblock_tag_2" canDelete="false" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1112" tag="hblock_tag_3" canDelete="false" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1113" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1113" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1113" tag="hblock_tag_4" canDelete="false" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1113" tag="hblock_tag_5" canDelete="false" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1114" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1114" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1114" tag="hblock_tag_6" canDelete="false" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1114" tag="hblock_tag_7" canDelete="false" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1130" tqparent_class="1130" fileExt=".cpp" fileName="kischannel" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1131" tag="operation_1131" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1137" tag="operation_1137" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1139" tag="operation_1139" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1142" tag="operation_1142" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1144" tag="operation_1144" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1145" tag="operation_1145" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1146" tag="operation_1146" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1148" tag="operation_1148" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1151" tag="operation_1151" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1152" tag="operation_1152" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1153" tag="operation_1153" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1156" tag="operation_1156" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1157" tag="operation_1157" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1158" tag="operation_1158" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1160" tag="operation_1160" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1163" tag="operation_1163" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1166" tag="operation_1166" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1169" tag="operation_1169" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kischannel.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1170" tqparent_class="1170" fileExt=".cpp" fileName="kiscanvassubject" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1171" tag="operation_1171" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1173" tag="operation_1173" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1174" tag="operation_1174" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1176" tag="operation_1176" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1178" tag="operation_1178" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1179" tag="operation_1179" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1180" tag="operation_1180" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1181" tag="operation_1181" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1183" tag="operation_1183" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1184" tag="operation_1184" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1185" tag="operation_1185" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1187" tag="operation_1187" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1188" tag="operation_1188" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1189" tag="operation_1189" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1190" tag="operation_1190" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1192" tag="operation_1192" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1195" tag="operation_1195" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1197" tag="operation_1197" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvassubject.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1198" tqparent_class="1198" fileExt=".cpp" fileName="compositeop" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; compositeop.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1455" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1237" tqparent_class="1237" fileExt=".cpp" fileName="enumimgtype" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; enumimgtype.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1285" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1458" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1259" tqparent_class="1259" fileExt=".cpp" fileName="kisimage" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;channeltype.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;pixeltype.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;kisbackgroundsp.h&quot;&amp;#010;#include &quot;vkischannelsp.h&quot;&amp;#010;#include &quot;kocolormap.h&quot;&amp;#010;#include &quot;vkislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1260" tag="hblock_tag_0" canDelete="false" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1260" tag="hblock_tag_1" canDelete="false" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_2" canDelete="false" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_3" canDelete="false" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1262" tag="hblock_tag_4" canDelete="false" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1262" tag="hblock_tag_5" canDelete="false" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1263" tag="hblock_tag_6" canDelete="false" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1263" tag="hblock_tag_7" canDelete="false" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1264" tag="hblock_tag_8" canDelete="false" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1264" tag="hblock_tag_9" canDelete="false" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1265" tag="hblock_tag_10" canDelete="false" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1265" tag="hblock_tag_11" canDelete="false" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1266" tag="hblock_tag_12" canDelete="false" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1266" tag="hblock_tag_13" canDelete="false" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1267" tag="hblock_tag_14" canDelete="false" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1267" tag="hblock_tag_15" canDelete="false" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1268" tag="hblock_tag_16" canDelete="false" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1268" tag="hblock_tag_17" canDelete="false" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_18" canDelete="false" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_19" canDelete="false" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1271" tag="hblock_tag_20" canDelete="false" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1271" tag="hblock_tag_21" canDelete="false" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1272" tag="hblock_tag_22" canDelete="false" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1272" tag="hblock_tag_23" canDelete="false" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1273" tag="hblock_tag_24" canDelete="false" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1273" tag="hblock_tag_25" canDelete="false" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1274" tag="hblock_tag_26" canDelete="false" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1274" tag="hblock_tag_27" canDelete="false" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1275" tag="hblock_tag_28" canDelete="false" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1275" tag="hblock_tag_29" canDelete="false" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1276" tag="hblock_tag_30" canDelete="false" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1276" tag="hblock_tag_31" canDelete="false" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_32" canDelete="false" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_33" canDelete="false" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1278" tag="hblock_tag_34" canDelete="false" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1278" tag="hblock_tag_35" canDelete="false" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1279" tag="hblock_tag_36" canDelete="false" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1279" tag="hblock_tag_37" canDelete="false" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1280" tag="hblock_tag_38" canDelete="false" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1280" tag="hblock_tag_39" canDelete="false" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1281" tag="hblock_tag_40" canDelete="false" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1281" tag="hblock_tag_41" canDelete="false" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1282" tag="hblock_tag_42" canDelete="false" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1282" tag="hblock_tag_43" canDelete="false" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1283" tag="hblock_tag_44" canDelete="false" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1283" tag="hblock_tag_45" canDelete="false" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1284" tag="hblock_tag_46" canDelete="false" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1284" tag="hblock_tag_47" canDelete="false" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1286" tag="hblock_tag_48" canDelete="false" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1286" tag="hblock_tag_49" canDelete="false" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1287" tag="hblock_tag_50" canDelete="false" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1287" tag="hblock_tag_51" canDelete="false" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1288" tag="hblock_tag_52" canDelete="false" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1288" tag="hblock_tag_53" canDelete="false" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1289" tag="hblock_tag_54" canDelete="false" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1289" tag="hblock_tag_55" canDelete="false" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1290" tag="hblock_tag_56" canDelete="false" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1290" tag="hblock_tag_57" canDelete="false" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1291" tag="hblock_tag_58" canDelete="false" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1291" tag="hblock_tag_59" canDelete="false" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_60" canDelete="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_61" canDelete="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_62" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_63" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_64" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_65" canDelete="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_66" canDelete="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_67" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_68" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_69" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1292" tag="operation_1292" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1294" tag="operation_1294" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1300" tag="operation_1300" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1302" tag="operation_1302" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1304" tag="operation_1304" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1306" tag="operation_1306" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1308" tag="operation_1308" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1310" tag="operation_1310" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1311" tag="operation_1311" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1313" tag="operation_1313" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1316" tag="operation_1316" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1317" tag="operation_1317" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1318" tag="operation_1318" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1321" tag="operation_1321" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1324" tag="operation_1324" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1325" tag="operation_1325" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1327" tag="operation_1327" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1328" tag="operation_1328" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1329" tag="operation_1329" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1331" tag="operation_1331" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1333" tag="operation_1333" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1334" tag="operation_1334" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1335" tag="operation_1335" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1337" tag="operation_1337" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1340" tag="operation_1340" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1341" tag="operation_1341" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1342" tag="operation_1342" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1344" tag="operation_1344" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1346" tag="operation_1346" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1347" tag="operation_1347" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1348" tag="operation_1348" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1349" tag="operation_1349" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1350" tag="operation_1350" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1351" tag="operation_1351" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1353" tag="operation_1353" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1355" tag="operation_1355" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1361" tag="operation_1361" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1362" tag="operation_1362" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1364" tag="operation_1364" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1369" tag="operation_1369" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1371" tag="operation_1371" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1373" tag="operation_1373" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1375" tag="operation_1375" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1376" tag="operation_1376" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1378" tag="operation_1378" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1380" tag="operation_1380" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1381" tag="operation_1381" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1382" tag="operation_1382" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1383" tag="operation_1383" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1384" tag="operation_1384" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1385" tag="operation_1385" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1386" tag="operation_1386" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1387" tag="operation_1387" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1392" tag="operation_1392" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1394" tag="operation_1394" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1396" tag="operation_1396" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1399" tag="operation_1399" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1402" tag="operation_1402" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1404" tag="operation_1404" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1406" tag="operation_1406" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1409" tag="operation_1409" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1411" tag="operation_1411" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1414" tag="operation_1414" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1417" tag="operation_1417" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1419" tag="operation_1419" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1421" tag="operation_1421" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1422" tag="operation_1422" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1424" tag="operation_1424" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1426" tag="operation_1426" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1427" tag="operation_1427" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1430" tag="operation_1430" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1431" tag="operation_1431" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1433" tag="operation_1433" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1434" tag="operation_1434" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1435" tag="operation_1435" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1437" tag="operation_1437" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1438" tag="operation_1438" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1440" tag="operation_1440" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1441" tag="operation_1441" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1443" tag="operation_1443" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1445" tag="operation_1445" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1447" tag="operation_1447" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1450" tag="operation_1450" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimage.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1260" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1260" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1260" tag="hblock_tag_0" canDelete="false" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1260" tag="hblock_tag_1" canDelete="false" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1261" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_2" canDelete="false" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_3" canDelete="false" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1262" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1262" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1262" tag="hblock_tag_4" canDelete="false" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1262" tag="hblock_tag_5" canDelete="false" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1263" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1263" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1263" tag="hblock_tag_6" canDelete="false" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1263" tag="hblock_tag_7" canDelete="false" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1264" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1264" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1264" tag="hblock_tag_8" canDelete="false" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1264" tag="hblock_tag_9" canDelete="false" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1265" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1265" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1265" tag="hblock_tag_10" canDelete="false" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1265" tag="hblock_tag_11" canDelete="false" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1266" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1266" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1266" tag="hblock_tag_12" canDelete="false" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1266" tag="hblock_tag_13" canDelete="false" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1267" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1267" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1267" tag="hblock_tag_14" canDelete="false" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1267" tag="hblock_tag_15" canDelete="false" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1268" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1268" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1268" tag="hblock_tag_16" canDelete="false" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1268" tag="hblock_tag_17" canDelete="false" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1269" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_18" canDelete="false" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_19" canDelete="false" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1271" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1271" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1271" tag="hblock_tag_20" canDelete="false" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1271" tag="hblock_tag_21" canDelete="false" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1272" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1272" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1272" tag="hblock_tag_22" canDelete="false" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1272" tag="hblock_tag_23" canDelete="false" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1273" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1273" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1273" tag="hblock_tag_24" canDelete="false" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1273" tag="hblock_tag_25" canDelete="false" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1274" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1274" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1274" tag="hblock_tag_26" canDelete="false" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1274" tag="hblock_tag_27" canDelete="false" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1275" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1275" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1275" tag="hblock_tag_28" canDelete="false" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1275" tag="hblock_tag_29" canDelete="false" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1276" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1276" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1276" tag="hblock_tag_30" canDelete="false" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1276" tag="hblock_tag_31" canDelete="false" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1277" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_32" canDelete="false" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_33" canDelete="false" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1278" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1278" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1278" tag="hblock_tag_34" canDelete="false" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1278" tag="hblock_tag_35" canDelete="false" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1279" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1279" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1279" tag="hblock_tag_36" canDelete="false" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1279" tag="hblock_tag_37" canDelete="false" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1280" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1280" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1280" tag="hblock_tag_38" canDelete="false" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1280" tag="hblock_tag_39" canDelete="false" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1281" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1281" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1281" tag="hblock_tag_40" canDelete="false" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1281" tag="hblock_tag_41" canDelete="false" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1282" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1282" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1282" tag="hblock_tag_42" canDelete="false" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1282" tag="hblock_tag_43" canDelete="false" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1283" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1283" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1283" tag="hblock_tag_44" canDelete="false" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1283" tag="hblock_tag_45" canDelete="false" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1284" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1284" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1284" tag="hblock_tag_46" canDelete="false" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1284" tag="hblock_tag_47" canDelete="false" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1286" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1286" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1286" tag="hblock_tag_48" canDelete="false" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1286" tag="hblock_tag_49" canDelete="false" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1287" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1287" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1287" tag="hblock_tag_50" canDelete="false" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1287" tag="hblock_tag_51" canDelete="false" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1288" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1288" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1288" tag="hblock_tag_52" canDelete="false" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1288" tag="hblock_tag_53" canDelete="false" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1289" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1289" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1289" tag="hblock_tag_54" canDelete="false" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1289" tag="hblock_tag_55" canDelete="false" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1290" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1290" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1290" tag="hblock_tag_56" canDelete="false" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1290" tag="hblock_tag_57" canDelete="false" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1291" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1291" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1291" tag="hblock_tag_58" canDelete="false" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1291" tag="hblock_tag_59" canDelete="false" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1270" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_60" canDelete="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_61" canDelete="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_62" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_63" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_64" canDelete="false" writeOutText="false" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1285" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_65" canDelete="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_66" canDelete="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_67" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_68" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_69" canDelete="false" writeOutText="false" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1453" tqparent_class="1453" fileExt=".cpp" fileName="kispaintdevice" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1454" tag="hblock_tag_0" canDelete="false" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1454" tag="hblock_tag_1" canDelete="false" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1456" tag="hblock_tag_2" canDelete="false" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1456" tag="hblock_tag_3" canDelete="false" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1457" tag="hblock_tag_4" canDelete="false" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1457" tag="hblock_tag_5" canDelete="false" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1459" tag="hblock_tag_6" canDelete="false" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1459" tag="hblock_tag_7" canDelete="false" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1460" tag="hblock_tag_8" canDelete="false" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1460" tag="hblock_tag_9" canDelete="false" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1461" tag="hblock_tag_10" canDelete="false" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1461" tag="hblock_tag_11" canDelete="false" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1462" tag="hblock_tag_12" canDelete="false" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1462" tag="hblock_tag_13" canDelete="false" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1463" tag="hblock_tag_14" canDelete="false" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1463" tag="hblock_tag_15" canDelete="false" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1464" tag="hblock_tag_16" canDelete="false" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1464" tag="hblock_tag_17" canDelete="false" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1465" tag="hblock_tag_18" canDelete="false" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1465" tag="hblock_tag_19" canDelete="false" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1466" tag="hblock_tag_20" canDelete="false" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1466" tag="hblock_tag_21" canDelete="false" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1467" tag="hblock_tag_22" canDelete="false" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1467" tag="hblock_tag_23" canDelete="false" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1468" tag="hblock_tag_24" canDelete="false" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1468" tag="hblock_tag_25" canDelete="false" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1469" tag="hblock_tag_26" canDelete="false" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1469" tag="hblock_tag_27" canDelete="false" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1470" tag="hblock_tag_28" canDelete="false" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1470" tag="hblock_tag_29" canDelete="false" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1471" tag="hblock_tag_30" canDelete="false" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1471" tag="hblock_tag_31" canDelete="false" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1472" tag="hblock_tag_32" canDelete="false" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1472" tag="hblock_tag_33" canDelete="false" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1473" tag="hblock_tag_34" canDelete="false" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1473" tag="hblock_tag_35" canDelete="false" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_36" canDelete="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_37" canDelete="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_38" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_39" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_40" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_41" canDelete="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_42" canDelete="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_43" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_44" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_45" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1474" tag="operation_1474" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1476" tag="operation_1476" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1482" tag="operation_1482" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1486" tag="operation_1486" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1491" tag="operation_1491" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1493" tag="operation_1493" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1494" tag="operation_1494" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Reimplemented by KisSelection; here it does nothing useful, but it&amp;#010;cannot be abstract, because otherwise this class would be abstract." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1495" tag="operation_1495" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1496" tag="operation_1496" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1497" tag="operation_1497" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1502" tag="operation_1502" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1504" tag="operation_1504" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1505" tag="operation_1505" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1506" tag="operation_1506" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1513" tag="operation_1513" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1516" tag="operation_1516" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1519" tag="operation_1519" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1521" tag="operation_1521" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1524" tag="operation_1524" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1526" tag="operation_1526" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1527" tag="operation_1527" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1529" tag="operation_1529" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1530" tag="operation_1530" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1531" tag="operation_1531" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1532" tag="operation_1532" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1534" tag="operation_1534" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1539" tag="operation_1539" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1541" tag="operation_1541" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1543" tag="operation_1543" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1551" tag="operation_1551" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1553" tag="operation_1553" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1554" tag="operation_1554" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1557" tag="operation_1557" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1562" tag="operation_1562" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1563" tag="operation_1563" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1564" tag="operation_1564" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1566" tag="operation_1566" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1567" tag="operation_1567" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1570" tag="operation_1570" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1572" tag="operation_1572" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1577" tag="operation_1577" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1579" tag="operation_1579" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1581" tag="operation_1581" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1583" tag="operation_1583" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1590" tag="operation_1590" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1592" tag="operation_1592" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1593" tag="operation_1593" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1594" tag="operation_1594" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1597" tag="operation_1597" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1598" tag="operation_1598" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1599" tag="operation_1599" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1600" tag="operation_1600" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1601" tag="operation_1601" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1602" tag="operation_1602" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1607" tag="operation_1607" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1609" tag="operation_1609" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1610" tag="operation_1610" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1612" tag="operation_1612" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1613" tag="operation_1613" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1615" tag="operation_1615" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1617" tag="operation_1617" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1618" tag="operation_1618" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1619" tag="operation_1619" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispaintdevice.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1454" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1454" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1454" tag="hblock_tag_0" canDelete="false" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1454" tag="hblock_tag_1" canDelete="false" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1456" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1456" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1456" tag="hblock_tag_2" canDelete="false" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1456" tag="hblock_tag_3" canDelete="false" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1457" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1457" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1457" tag="hblock_tag_4" canDelete="false" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1457" tag="hblock_tag_5" canDelete="false" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1459" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1459" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1459" tag="hblock_tag_6" canDelete="false" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1459" tag="hblock_tag_7" canDelete="false" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1460" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1460" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1460" tag="hblock_tag_8" canDelete="false" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1460" tag="hblock_tag_9" canDelete="false" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1461" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1461" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1461" tag="hblock_tag_10" canDelete="false" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1461" tag="hblock_tag_11" canDelete="false" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1462" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1462" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1462" tag="hblock_tag_12" canDelete="false" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1462" tag="hblock_tag_13" canDelete="false" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1463" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1463" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1463" tag="hblock_tag_14" canDelete="false" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1463" tag="hblock_tag_15" canDelete="false" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1464" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1464" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1464" tag="hblock_tag_16" canDelete="false" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1464" tag="hblock_tag_17" canDelete="false" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1465" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1465" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1465" tag="hblock_tag_18" canDelete="false" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1465" tag="hblock_tag_19" canDelete="false" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1466" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1466" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1466" tag="hblock_tag_20" canDelete="false" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1466" tag="hblock_tag_21" canDelete="false" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1467" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1467" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1467" tag="hblock_tag_22" canDelete="false" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1467" tag="hblock_tag_23" canDelete="false" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1468" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1468" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1468" tag="hblock_tag_24" canDelete="false" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1468" tag="hblock_tag_25" canDelete="false" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1469" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1469" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1469" tag="hblock_tag_26" canDelete="false" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1469" tag="hblock_tag_27" canDelete="false" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1470" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1470" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1470" tag="hblock_tag_28" canDelete="false" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1470" tag="hblock_tag_29" canDelete="false" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1471" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1471" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1471" tag="hblock_tag_30" canDelete="false" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1471" tag="hblock_tag_31" canDelete="false" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1472" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1472" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1472" tag="hblock_tag_32" canDelete="false" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1472" tag="hblock_tag_33" canDelete="false" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1473" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1473" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1473" tag="hblock_tag_34" canDelete="false" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1473" tag="hblock_tag_35" canDelete="false" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1455" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_36" canDelete="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_37" canDelete="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_38" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_39" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_40" canDelete="false" writeOutText="false" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1458" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_41" canDelete="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_42" canDelete="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_43" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_44" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_45" canDelete="false" writeOutText="false" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1620" tqparent_class="1620" fileExt=".cpp" fileName="kislayer" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;kistqmasksp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1621" tag="hblock_tag_0" canDelete="false" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1621" tag="hblock_tag_1" canDelete="false" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1622" tag="hblock_tag_2" canDelete="false" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1622" tag="hblock_tag_3" canDelete="false" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1623" tag="hblock_tag_4" canDelete="false" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1623" tag="hblock_tag_5" canDelete="false" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1624" tag="hblock_tag_6" canDelete="false" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1624" tag="hblock_tag_7" canDelete="false" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1625" tag="hblock_tag_8" canDelete="false" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1625" tag="hblock_tag_9" canDelete="false" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1626" tag="hblock_tag_10" canDelete="false" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1626" tag="hblock_tag_11" canDelete="false" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_12" canDelete="false" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_13" canDelete="false" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1628" tag="operation_1628" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1634" tag="operation_1634" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1639" tag="operation_1639" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1644" tag="operation_1644" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1646" tag="operation_1646" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1647" tag="operation_1647" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1649" tag="operation_1649" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1651" tag="operation_1651" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1653" tag="operation_1653" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1654" tag="operation_1654" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1656" tag="operation_1656" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1657" tag="operation_1657" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1658" tag="operation_1658" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1660" tag="operation_1660" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1663" tag="operation_1663" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1664" tag="operation_1664" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1666" tag="operation_1666" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kislayer.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1621" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1621" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1621" tag="hblock_tag_0" canDelete="false" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1621" tag="hblock_tag_1" canDelete="false" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1622" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1622" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1622" tag="hblock_tag_2" canDelete="false" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1622" tag="hblock_tag_3" canDelete="false" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1623" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1623" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1623" tag="hblock_tag_4" canDelete="false" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1623" tag="hblock_tag_5" canDelete="false" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1624" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1624" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1624" tag="hblock_tag_6" canDelete="false" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1624" tag="hblock_tag_7" canDelete="false" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1625" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1625" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1625" tag="hblock_tag_8" canDelete="false" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1625" tag="hblock_tag_9" canDelete="false" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1626" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1626" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1626" tag="hblock_tag_10" canDelete="false" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1626" tag="hblock_tag_11" canDelete="false" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1627" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1627" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_12" canDelete="false" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_13" canDelete="false" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1667" tqparent_class="1667" fileExt=".cpp" fileName="kisnameserver" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1668" tag="hblock_tag_0" canDelete="false" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1668" tag="hblock_tag_1" canDelete="false" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1669" tag="hblock_tag_2" canDelete="false" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1669" tag="hblock_tag_3" canDelete="false" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1670" tag="operation_1670" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1673" tag="operation_1673" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1674" tag="operation_1674" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1675" tag="operation_1675" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1676" tag="operation_1676" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisnameserver.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1668" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1668" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1668" tag="hblock_tag_0" canDelete="false" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1668" tag="hblock_tag_1" canDelete="false" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1669" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1669" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1669" tag="hblock_tag_2" canDelete="false" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1669" tag="hblock_tag_3" canDelete="false" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1677" tqparent_class="1677" fileExt=".cpp" fileName="kismemento" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1678" tag="operation_1678" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismemento.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:11&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1679" tqparent_class="1679" fileExt=".cpp" fileName="kispaintdevicevisitor" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1680" tag="operation_1680" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1683" tag="operation_1683" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1686" tag="operation_1686" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1689" tag="operation_1689" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1692" tag="operation_1692" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1695" tag="operation_1695" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1696" tag="operation_1696" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1699" tag="operation_1699" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1702" tag="operation_1702" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1705" tag="operation_1705" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1708" tag="operation_1708" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1711" tag="operation_1711" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispaintdevicevisitor.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1712" tqparent_class="1712" fileExt=".cpp" fileName="kismementooriginatorinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kismementosp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1713" tag="operation_1713" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1715" tag="operation_1715" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1716" tag="operation_1716" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1718" tag="operation_1718" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1720" tag="operation_1720" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1721" tag="operation_1721" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismementooriginatorinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1722" tqparent_class="1722" fileExt=".cpp" fileName="kistqmask" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1723" tag="operation_1723" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1729" tag="operation_1729" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1731" tag="operation_1731" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1732" tag="operation_1732" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1735" tag="operation_1735" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1737" tag="operation_1737" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1738" tag="operation_1738" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1740" tag="operation_1740" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistqmask.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1741" tqparent_class="1741" fileExt=".cpp" fileName="kisimagepipebrush" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1743" tag="hblock_tag_0" canDelete="false" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1743" tag="hblock_tag_1" canDelete="false" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1744" tag="hblock_tag_2" canDelete="false" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1744" tag="hblock_tag_3" canDelete="false" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1745" tag="hblock_tag_4" canDelete="false" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1745" tag="hblock_tag_5" canDelete="false" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1746" tag="hblock_tag_6" canDelete="false" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1746" tag="hblock_tag_7" canDelete="false" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1747" tag="hblock_tag_8" canDelete="false" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1747" tag="hblock_tag_9" canDelete="false" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1748" tag="hblock_tag_10" canDelete="false" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1748" tag="hblock_tag_11" canDelete="false" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1749" tag="hblock_tag_12" canDelete="false" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1749" tag="hblock_tag_13" canDelete="false" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_14" canDelete="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_15" canDelete="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1750" tag="operation_1750" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1752" tag="operation_1752" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1753" tag="operation_1753" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1754" tag="operation_1754" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the next image in the pipe." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1755" tag="operation_1755" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1756" tag="operation_1756" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="@return the next tqmask in the pipe." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1758" tag="operation_1758" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1759" tag="operation_1759" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1761" tag="operation_1761" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1763" tag="operation_1763" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagepipebrush.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1743" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1743" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1743" tag="hblock_tag_0" canDelete="false" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1743" tag="hblock_tag_1" canDelete="false" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1744" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1744" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1744" tag="hblock_tag_2" canDelete="false" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1744" tag="hblock_tag_3" canDelete="false" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1745" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1745" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1745" tag="hblock_tag_4" canDelete="false" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1745" tag="hblock_tag_5" canDelete="false" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1746" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1746" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1746" tag="hblock_tag_6" canDelete="false" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1746" tag="hblock_tag_7" canDelete="false" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1747" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1747" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1747" tag="hblock_tag_8" canDelete="false" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1747" tag="hblock_tag_9" canDelete="false" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1748" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1748" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1748" tag="hblock_tag_10" canDelete="false" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1748" tag="hblock_tag_11" canDelete="false" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1749" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1749" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1749" tag="hblock_tag_12" canDelete="false" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1749" tag="hblock_tag_13" canDelete="false" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1742" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_14" canDelete="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_15" canDelete="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1767" tqparent_class="1767" fileExt=".cpp" fileName="kispainter" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;float.h&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_0" canDelete="false" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_1" canDelete="false" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_2" canDelete="false" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_3" canDelete="false" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1771" tag="hblock_tag_4" canDelete="false" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1771" tag="hblock_tag_5" canDelete="false" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_6" canDelete="false" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_7" canDelete="false" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1773" tag="hblock_tag_8" canDelete="false" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1773" tag="hblock_tag_9" canDelete="false" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_10" canDelete="false" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_11" canDelete="false" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="hblock_tag_12" canDelete="false" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="hblock_tag_13" canDelete="false" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1777" tag="hblock_tag_14" canDelete="false" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1777" tag="hblock_tag_15" canDelete="false" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_16" canDelete="false" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_17" canDelete="false" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1779" tag="hblock_tag_18" canDelete="false" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1779" tag="hblock_tag_19" canDelete="false" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_20" canDelete="false" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_21" canDelete="false" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1781" tag="hblock_tag_22" canDelete="false" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1781" tag="hblock_tag_23" canDelete="false" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_24" canDelete="false" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_25" canDelete="false" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1783" tag="hblock_tag_26" canDelete="false" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1783" tag="hblock_tag_27" canDelete="false" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_28" canDelete="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_29" canDelete="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_30" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_32" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_33" canDelete="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_34" canDelete="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_35" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_36" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_37" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1784" tag="operation_1784" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1786" tag="operation_1786" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1787" tag="operation_1787" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1789" tag="operation_1789" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1791" tag="operation_1791" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1793" tag="operation_1793" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1795" tag="operation_1795" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1805" tag="operation_1805" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1814" tag="operation_1814" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1817" tag="operation_1817" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1818" tag="operation_1818" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1820" tag="operation_1820" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1825" tag="operation_1825" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1832" tag="operation_1832" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1837" tag="operation_1837" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1839" tag="operation_1839" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1845" tag="operation_1845" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1852" tag="operation_1852" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1855" tag="operation_1855" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1859" tag="operation_1859" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1864" tag="operation_1864" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1871" tag="operation_1871" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1873" tag="operation_1873" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1875" tag="operation_1875" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1877" tag="operation_1877" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1879" tag="operation_1879" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1881" tag="operation_1881" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1883" tag="operation_1883" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1885" tag="operation_1885" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1894" tag="operation_1894" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1902" tag="operation_1902" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispainter.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1768" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1768" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_0" canDelete="false" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_1" canDelete="false" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1770" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1770" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_2" canDelete="false" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_3" canDelete="false" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1771" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1771" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1771" tag="hblock_tag_4" canDelete="false" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1771" tag="hblock_tag_5" canDelete="false" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1772" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1772" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_6" canDelete="false" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_7" canDelete="false" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1773" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1773" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1773" tag="hblock_tag_8" canDelete="false" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1773" tag="hblock_tag_9" canDelete="false" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1774" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1774" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_10" canDelete="false" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_11" canDelete="false" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1775" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1775" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="hblock_tag_12" canDelete="false" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="hblock_tag_13" canDelete="false" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1777" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1777" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1777" tag="hblock_tag_14" canDelete="false" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1777" tag="hblock_tag_15" canDelete="false" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1778" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1778" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_16" canDelete="false" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_17" canDelete="false" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1779" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1779" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1779" tag="hblock_tag_18" canDelete="false" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1779" tag="hblock_tag_19" canDelete="false" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1780" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1780" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_20" canDelete="false" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_21" canDelete="false" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1781" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1781" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1781" tag="hblock_tag_22" canDelete="false" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1781" tag="hblock_tag_23" canDelete="false" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1782" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1782" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_24" canDelete="false" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_25" canDelete="false" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1783" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1783" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1783" tag="hblock_tag_26" canDelete="false" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1783" tag="hblock_tag_27" canDelete="false" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1769" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_28" canDelete="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_29" canDelete="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_30" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_31" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_32" canDelete="false" writeOutText="false" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1776" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_33" canDelete="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_34" canDelete="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_35" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_36" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_37" canDelete="false" writeOutText="false" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1903" tqparent_class="1903" fileExt=".cpp" fileName="kisselection" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1904" tag="hblock_tag_0" canDelete="false" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1904" tag="hblock_tag_1" canDelete="false" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1905" tag="hblock_tag_2" canDelete="false" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1905" tag="hblock_tag_3" canDelete="false" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1906" tag="hblock_tag_4" canDelete="false" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1906" tag="hblock_tag_5" canDelete="false" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1907" tag="hblock_tag_6" canDelete="false" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1907" tag="hblock_tag_7" canDelete="false" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1908" tag="hblock_tag_8" canDelete="false" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1908" tag="hblock_tag_9" canDelete="false" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1909" tag="hblock_tag_10" canDelete="false" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1909" tag="hblock_tag_11" canDelete="false" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1910" tag="hblock_tag_12" canDelete="false" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1910" tag="hblock_tag_13" canDelete="false" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1911" tag="operation_1911" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1916" tag="operation_1916" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1921" tag="operation_1921" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1922" tag="operation_1922" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1924" tag="operation_1924" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1925" tag="operation_1925" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1927" tag="operation_1927" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1930" tag="operation_1930" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1931" tag="operation_1931" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1936" tag="operation_1936" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1938" tag="operation_1938" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1940" tag="operation_1940" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1941" tag="operation_1941" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1942" tag="operation_1942" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisselection.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:04&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1904" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1904" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1904" tag="hblock_tag_0" canDelete="false" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1904" tag="hblock_tag_1" canDelete="false" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1905" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1905" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1905" tag="hblock_tag_2" canDelete="false" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1905" tag="hblock_tag_3" canDelete="false" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1906" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1906" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1906" tag="hblock_tag_4" canDelete="false" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1906" tag="hblock_tag_5" canDelete="false" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1907" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1907" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1907" tag="hblock_tag_6" canDelete="false" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1907" tag="hblock_tag_7" canDelete="false" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1908" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1908" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1908" tag="hblock_tag_8" canDelete="false" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1908" tag="hblock_tag_9" canDelete="false" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1909" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1909" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1909" tag="hblock_tag_10" canDelete="false" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1909" tag="hblock_tag_11" canDelete="false" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1910" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1910" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1910" tag="hblock_tag_12" canDelete="false" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1910" tag="hblock_tag_13" canDelete="false" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1943" tqparent_class="1943" fileExt=".cpp" fileName="kisresourcemediator" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1944" tag="hblock_tag_0" canDelete="false" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1944" tag="hblock_tag_1" canDelete="false" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1945" tag="hblock_tag_2" canDelete="false" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1945" tag="hblock_tag_3" canDelete="false" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1946" tag="hblock_tag_4" canDelete="false" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1946" tag="hblock_tag_5" canDelete="false" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1947" tag="operation_1947" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1955" tag="operation_1955" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1956" tag="operation_1956" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1957" tag="operation_1957" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1959" tag="operation_1959" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1961" tag="operation_1961" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1963" tag="operation_1963" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresourcemediator.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1944" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1944" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1944" tag="hblock_tag_0" canDelete="false" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1944" tag="hblock_tag_1" canDelete="false" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1945" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1945" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1945" tag="hblock_tag_2" canDelete="false" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1945" tag="hblock_tag_3" canDelete="false" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1946" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1946" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1946" tag="hblock_tag_4" canDelete="false" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1946" tag="hblock_tag_5" canDelete="false" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2369" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2423" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1964" tqparent_class="1964" fileExt=".cpp" fileName="kisresourceserver" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1965" tag="hblock_tag_0" canDelete="false" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1965" tag="hblock_tag_1" canDelete="false" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1966" tag="hblock_tag_2" canDelete="false" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1966" tag="hblock_tag_3" canDelete="false" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1967" tag="hblock_tag_4" canDelete="false" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1967" tag="hblock_tag_5" canDelete="false" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1968" tag="hblock_tag_6" canDelete="false" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1968" tag="hblock_tag_7" canDelete="false" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1969" tag="hblock_tag_8" canDelete="false" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1969" tag="hblock_tag_9" canDelete="false" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1970" tag="hblock_tag_10" canDelete="false" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1970" tag="hblock_tag_11" canDelete="false" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1971" tag="operation_1971" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1972" tag="operation_1972" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1973" tag="operation_1973" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1974" tag="operation_1974" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1975" tag="operation_1975" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1976" tag="operation_1976" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1977" tag="operation_1977" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1978" tag="operation_1978" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1979" tag="operation_1979" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1980" tag="operation_1980" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1981" tag="operation_1981" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1982" tag="operation_1982" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1983" tag="operation_1983" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1984" tag="operation_1984" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresourceserver.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1965" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1965" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1965" tag="hblock_tag_0" canDelete="false" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1965" tag="hblock_tag_1" canDelete="false" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1966" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1966" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1966" tag="hblock_tag_2" canDelete="false" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1966" tag="hblock_tag_3" canDelete="false" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1967" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1967" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1967" tag="hblock_tag_4" canDelete="false" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1967" tag="hblock_tag_5" canDelete="false" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1968" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1968" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1968" tag="hblock_tag_6" canDelete="false" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1968" tag="hblock_tag_7" canDelete="false" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1969" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1969" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1969" tag="hblock_tag_8" canDelete="false" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1969" tag="hblock_tag_9" canDelete="false" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1970" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1970" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1970" tag="hblock_tag_10" canDelete="false" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1970" tag="hblock_tag_11" canDelete="false" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1985" tqparent_class="1985" fileExt=".cpp" fileName="kispluginserver" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;#include &quot;plugininfolist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1986" tag="hblock_tag_0" canDelete="false" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1986" tag="hblock_tag_1" canDelete="false" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1987" tag="hblock_tag_2" canDelete="false" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1987" tag="hblock_tag_3" canDelete="false" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1988" tag="operation_1988" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1989" tag="operation_1989" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1991" tag="operation_1991" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1993" tag="operation_1993" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1995" tag="operation_1995" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispluginserver.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1986" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1986" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1986" tag="hblock_tag_0" canDelete="false" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1986" tag="hblock_tag_1" canDelete="false" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1987" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1987" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1987" tag="hblock_tag_2" canDelete="false" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1987" tag="hblock_tag_3" canDelete="false" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1996" tqparent_class="1996" fileExt=".cpp" fileName="kistilecommand" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;tilemap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1997" tag="hblock_tag_0" canDelete="false" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1997" tag="hblock_tag_1" canDelete="false" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1998" tag="hblock_tag_2" canDelete="false" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1998" tag="hblock_tag_3" canDelete="false" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1999" tag="hblock_tag_4" canDelete="false" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1999" tag="hblock_tag_5" canDelete="false" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2000" tag="hblock_tag_6" canDelete="false" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2000" tag="hblock_tag_7" canDelete="false" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2001" tag="hblock_tag_8" canDelete="false" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2001" tag="hblock_tag_9" canDelete="false" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2002" tag="operation_2002" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2005" tag="operation_2005" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2012" tag="operation_2012" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2016" tag="operation_2016" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2019" tag="operation_2019" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2020" tag="operation_2020" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2021" tag="operation_2021" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2022" tag="operation_2022" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilecommand.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1997" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1997" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1997" tag="hblock_tag_0" canDelete="false" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1997" tag="hblock_tag_1" canDelete="false" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1998" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1998" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1998" tag="hblock_tag_2" canDelete="false" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1998" tag="hblock_tag_3" canDelete="false" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1999" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1999" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1999" tag="hblock_tag_4" canDelete="false" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1999" tag="hblock_tag_5" canDelete="false" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2000" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2000" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2000" tag="hblock_tag_6" canDelete="false" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2000" tag="hblock_tag_7" canDelete="false" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2001" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2001" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2001" tag="hblock_tag_8" canDelete="false" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2001" tag="hblock_tag_9" canDelete="false" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2023" tqparent_class="2023" fileExt=".cpp" fileName="plugininfo" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;plugintype.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2024" tag="hblock_tag_0" canDelete="false" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2024" tag="hblock_tag_1" canDelete="false" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2025" tag="hblock_tag_2" canDelete="false" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2025" tag="hblock_tag_3" canDelete="false" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2026" tag="hblock_tag_4" canDelete="false" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2026" tag="hblock_tag_5" canDelete="false" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2027" tag="hblock_tag_6" canDelete="false" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2027" tag="hblock_tag_7" canDelete="false" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2028" tag="hblock_tag_8" canDelete="false" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2028" tag="hblock_tag_9" canDelete="false" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2029" tag="hblock_tag_10" canDelete="false" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2029" tag="hblock_tag_11" canDelete="false" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2030" tag="hblock_tag_12" canDelete="false" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2030" tag="hblock_tag_13" canDelete="false" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2031" tag="operation_2031" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2038" tag="operation_2038" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2039" tag="operation_2039" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2040" tag="operation_2040" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2041" tag="operation_2041" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2042" tag="operation_2042" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2043" tag="operation_2043" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2044" tag="operation_2044" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2046" tag="operation_2046" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; plugininfo.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2024" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2024" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2024" tag="hblock_tag_0" canDelete="false" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2024" tag="hblock_tag_1" canDelete="false" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2025" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2025" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2025" tag="hblock_tag_2" canDelete="false" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2025" tag="hblock_tag_3" canDelete="false" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2026" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2026" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2026" tag="hblock_tag_4" canDelete="false" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2026" tag="hblock_tag_5" canDelete="false" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2027" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2027" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2027" tag="hblock_tag_6" canDelete="false" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2027" tag="hblock_tag_7" canDelete="false" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2028" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2028" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2028" tag="hblock_tag_8" canDelete="false" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2028" tag="hblock_tag_9" canDelete="false" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2029" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2029" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2029" tag="hblock_tag_10" canDelete="false" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2029" tag="hblock_tag_11" canDelete="false" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2030" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2030" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2030" tag="hblock_tag_12" canDelete="false" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2030" tag="hblock_tag_13" canDelete="false" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2047" tqparent_class="2047" fileExt=".cpp" fileName="kisresource" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2048" tag="hblock_tag_0" canDelete="false" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2048" tag="hblock_tag_1" canDelete="false" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2049" tag="hblock_tag_2" canDelete="false" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2049" tag="hblock_tag_3" canDelete="false" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2050" tag="hblock_tag_4" canDelete="false" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2050" tag="hblock_tag_5" canDelete="false" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2051" tag="hblock_tag_6" canDelete="false" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2051" tag="hblock_tag_7" canDelete="false" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2052" tag="hblock_tag_8" canDelete="false" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2052" tag="hblock_tag_9" canDelete="false" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2053" tag="hblock_tag_10" canDelete="false" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2053" tag="hblock_tag_11" canDelete="false" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2054" tag="hblock_tag_12" canDelete="false" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2054" tag="hblock_tag_13" canDelete="false" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2055" tag="operation_2055" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2057" tag="operation_2057" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2059" tag="operation_2059" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Creates a new KisResource object using @p filename. No file is opened&amp;#010;in the constructor, you have to call loadAsync.&amp;#010;&amp;#010;@param filename the file name to save and load from." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2061" tag="operation_2061" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2062" tag="operation_2062" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2063" tag="operation_2063" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2064" tag="operation_2064" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Returns a QImage representing this resource. This image could be null." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2065" tag="operation_2065" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Load this resource asynchronously. The signal loadComplete is emitted when&amp;#010;the resource has been loaded and valid flag is set to true." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2066" tag="operation_2066" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2067" tag="operation_2067" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Save this resource asynchronously. The signal saveComplete is emitted when&amp;#010;the resource has been saved." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2068" tag="operation_2068" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2070" tag="operation_2070" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2072" tag="operation_2072" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2074" tag="operation_2074" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2076" tag="operation_2076" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2078" tag="operation_2078" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2080" tag="operation_2080" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2082" tag="operation_2082" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2083" tag="operation_2083" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2084" tag="operation_2084" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2085" tag="operation_2085" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" text="Creates a new KisResource object using @p filename. No file is opened&amp;#010;in the constructor, you have to call loadAsync.&amp;#010;&amp;#010;@param filename the file name to save and load from." />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresource.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2048" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2048" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2048" tag="hblock_tag_0" canDelete="false" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2048" tag="hblock_tag_1" canDelete="false" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2049" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2049" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2049" tag="hblock_tag_2" canDelete="false" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2049" tag="hblock_tag_3" canDelete="false" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2050" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2050" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2050" tag="hblock_tag_4" canDelete="false" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2050" tag="hblock_tag_5" canDelete="false" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2051" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2051" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2051" tag="hblock_tag_6" canDelete="false" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2051" tag="hblock_tag_7" canDelete="false" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2052" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2052" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2052" tag="hblock_tag_8" canDelete="false" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2052" tag="hblock_tag_9" canDelete="false" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2053" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2053" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2053" tag="hblock_tag_10" canDelete="false" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2053" tag="hblock_tag_11" canDelete="false" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2054" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2054" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2054" tag="hblock_tag_12" canDelete="false" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2054" tag="hblock_tag_13" canDelete="false" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2086" tqparent_class="2086" fileExt=".cpp" fileName="kisrenderinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2087" tag="operation_2087" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2089" tag="operation_2089" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2090" tag="operation_2090" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2092" tag="operation_2092" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2093" tag="operation_2093" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2095" tag="operation_2095" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2100" tag="operation_2100" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2102" tag="operation_2102" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2105" tag="operation_2105" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2106" tag="operation_2106" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2108" tag="operation_2108" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisrenderinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2109" tqparent_class="2109" fileExt=".cpp" fileName="kispattern" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;kisresource.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2110" tag="hblock_tag_0" canDelete="false" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2110" tag="hblock_tag_1" canDelete="false" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2111" tag="hblock_tag_2" canDelete="false" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2111" tag="hblock_tag_3" canDelete="false" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2112" tag="hblock_tag_4" canDelete="false" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2112" tag="hblock_tag_5" canDelete="false" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2113" tag="hblock_tag_6" canDelete="false" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2113" tag="hblock_tag_7" canDelete="false" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2114" tag="hblock_tag_8" canDelete="false" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2114" tag="hblock_tag_9" canDelete="false" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2115" tag="hblock_tag_10" canDelete="false" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2115" tag="hblock_tag_11" canDelete="false" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2116" tag="hblock_tag_12" canDelete="false" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2116" tag="hblock_tag_13" canDelete="false" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2117" tag="operation_2117" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2119" tag="operation_2119" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2120" tag="operation_2120" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2121" tag="operation_2121" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2122" tag="operation_2122" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2123" tag="operation_2123" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2124" tag="operation_2124" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2125" tag="operation_2125" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2126" tag="operation_2126" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispattern.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2110" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2110" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2110" tag="hblock_tag_0" canDelete="false" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2110" tag="hblock_tag_1" canDelete="false" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2111" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2111" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2111" tag="hblock_tag_2" canDelete="false" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2111" tag="hblock_tag_3" canDelete="false" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2112" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2112" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2112" tag="hblock_tag_4" canDelete="false" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2112" tag="hblock_tag_5" canDelete="false" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2113" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2113" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2113" tag="hblock_tag_6" canDelete="false" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2113" tag="hblock_tag_7" canDelete="false" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2114" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2114" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2114" tag="hblock_tag_8" canDelete="false" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2114" tag="hblock_tag_9" canDelete="false" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2115" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2115" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2115" tag="hblock_tag_10" canDelete="false" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2115" tag="hblock_tag_11" canDelete="false" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2116" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2116" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2116" tag="hblock_tag_12" canDelete="false" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2116" tag="hblock_tag_13" canDelete="false" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2422" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2129" tqparent_class="2129" fileExt=".cpp" fileName="plugintype" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; plugintype.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2135" tqparent_class="2135" fileExt=".cpp" fileName="kistool" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2136" tag="operation_2136" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2138" tag="operation_2138" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2139" tag="operation_2139" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2141" tag="operation_2141" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2142" tag="operation_2142" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2144" tag="operation_2144" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2146" tag="operation_2146" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2148" tag="operation_2148" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2150" tag="operation_2150" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2152" tag="operation_2152" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2154" tag="operation_2154" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2156" tag="operation_2156" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2158" tag="operation_2158" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2160" tag="operation_2160" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2162" tag="operation_2162" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2164" tag="operation_2164" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2167" tag="operation_2167" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2169" tag="operation_2169" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2171" tag="operation_2171" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2173" tag="operation_2173" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistool.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2441" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2174" tqparent_class="2174" fileExt=".cpp" fileName="kisundoadapter" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2175" tag="operation_2175" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2177" tag="operation_2177" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2178" tag="operation_2178" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2180" tag="operation_2180" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2182" tag="operation_2182" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2184" tag="operation_2184" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2185" tag="operation_2185" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2186" tag="operation_2186" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2188" tag="operation_2188" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2189" tag="operation_2189" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisundoadapter.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2366" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2190" tqparent_class="2190" fileExt=".cpp" fileName="kistoolfactory" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;vkistool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2192" tag="hblock_tag_0" canDelete="false" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2192" tag="hblock_tag_1" canDelete="false" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2193" tag="operation_2193" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2195" tag="operation_2195" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2196" tag="operation_2196" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2198" tag="operation_2198" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2201" tag="operation_2201" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2202" tag="operation_2202" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistoolfactory.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2192" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2192" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2192" tag="hblock_tag_0" canDelete="false" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2192" tag="hblock_tag_1" canDelete="false" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2191" field_type="1" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2191" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2191" field_type="1" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2191" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2203" tqparent_class="2203" fileExt=".cpp" fileName="kistoolcontrollerinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2204" tag="operation_2204" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2206" tag="operation_2206" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2207" tag="operation_2207" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2209" tag="operation_2209" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2210" tag="operation_2210" canDelete="false" writeOutText="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2212" tag="operation_2212" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistoolcontrollerinterface.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2218" tqparent_class="2218" fileExt=".cpp" fileName="kisutil" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2219" tag="operation_2219" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2222" tag="operation_2222" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2224" tag="operation_2224" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2226" tag="operation_2226" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2229" tag="operation_2229" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2232" tag="operation_2232" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisutil.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2236" tqparent_class="2236" fileExt=".cpp" fileName="kisvector" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kisvector.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;#include &quot;long.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2237" tag="hblock_tag_0" canDelete="false" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2237" tag="hblock_tag_1" canDelete="false" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2238" tag="hblock_tag_2" canDelete="false" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2238" tag="hblock_tag_3" canDelete="false" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2239" tag="hblock_tag_4" canDelete="false" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2239" tag="hblock_tag_5" canDelete="false" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2240" tag="operation_2240" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2243" tag="operation_2243" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2246" tag="operation_2246" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2249" tag="operation_2249" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2252" tag="operation_2252" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2255" tag="operation_2255" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2258" tag="operation_2258" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2261" tag="operation_2261" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2263" tag="operation_2263" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2265" tag="operation_2265" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2267" tag="operation_2267" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2270" tag="operation_2270" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2272" tag="operation_2272" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2274" tag="operation_2274" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2277" tag="operation_2277" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2279" tag="operation_2279" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2282" tag="operation_2282" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2285" tag="operation_2285" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2288" tag="operation_2288" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2290" tag="operation_2290" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2292" tag="operation_2292" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2294" tag="operation_2294" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2297" tag="operation_2297" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2298" tag="operation_2298" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2302" tag="operation_2302" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2306" tag="operation_2306" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2310" tag="operation_2310" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2312" tag="operation_2312" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2314" tag="operation_2314" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2315" tag="operation_2315" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2316" tag="operation_2316" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2317" tag="operation_2317" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2319" tag="operation_2319" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2321" tag="operation_2321" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2323" tag="operation_2323" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2324" tag="operation_2324" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2325" tag="operation_2325" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisvector.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2237" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2237" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2237" tag="hblock_tag_0" canDelete="false" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2237" tag="hblock_tag_1" canDelete="false" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2238" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2238" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2238" tag="hblock_tag_2" canDelete="false" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2238" tag="hblock_tag_3" canDelete="false" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2239" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2239" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2239" tag="hblock_tag_4" canDelete="false" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2239" tag="hblock_tag_5" canDelete="false" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2365" tqparent_class="2365" fileExt=".cpp" fileName="kisview" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;string&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisguidesp.h&quot;&amp;#010;#include &quot;vkiscanvasobserver.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2367" tag="hblock_tag_0" canDelete="false" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2367" tag="hblock_tag_1" canDelete="false" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2370" tag="hblock_tag_2" canDelete="false" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2370" tag="hblock_tag_3" canDelete="false" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2371" tag="hblock_tag_4" canDelete="false" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2371" tag="hblock_tag_5" canDelete="false" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2372" tag="hblock_tag_6" canDelete="false" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2372" tag="hblock_tag_7" canDelete="false" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2373" tag="hblock_tag_8" canDelete="false" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2373" tag="hblock_tag_9" canDelete="false" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2374" tag="hblock_tag_10" canDelete="false" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2374" tag="hblock_tag_11" canDelete="false" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2375" tag="hblock_tag_12" canDelete="false" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2375" tag="hblock_tag_13" canDelete="false" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2376" tag="hblock_tag_14" canDelete="false" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2376" tag="hblock_tag_15" canDelete="false" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2377" tag="hblock_tag_16" canDelete="false" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2377" tag="hblock_tag_17" canDelete="false" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2378" tag="hblock_tag_18" canDelete="false" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2378" tag="hblock_tag_19" canDelete="false" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2379" tag="hblock_tag_20" canDelete="false" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2379" tag="hblock_tag_21" canDelete="false" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2380" tag="hblock_tag_22" canDelete="false" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2380" tag="hblock_tag_23" canDelete="false" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2381" tag="hblock_tag_24" canDelete="false" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2381" tag="hblock_tag_25" canDelete="false" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2383" tag="hblock_tag_26" canDelete="false" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2383" tag="hblock_tag_27" canDelete="false" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2384" tag="hblock_tag_28" canDelete="false" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2384" tag="hblock_tag_29" canDelete="false" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2386" tag="hblock_tag_30" canDelete="false" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2386" tag="hblock_tag_31" canDelete="false" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2387" tag="hblock_tag_32" canDelete="false" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2387" tag="hblock_tag_33" canDelete="false" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2388" tag="hblock_tag_34" canDelete="false" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2388" tag="hblock_tag_35" canDelete="false" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2389" tag="hblock_tag_36" canDelete="false" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2389" tag="hblock_tag_37" canDelete="false" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2391" tag="hblock_tag_38" canDelete="false" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2391" tag="hblock_tag_39" canDelete="false" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2392" tag="hblock_tag_40" canDelete="false" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2392" tag="hblock_tag_41" canDelete="false" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2393" tag="hblock_tag_42" canDelete="false" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2393" tag="hblock_tag_43" canDelete="false" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2394" tag="hblock_tag_44" canDelete="false" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2394" tag="hblock_tag_45" canDelete="false" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2395" tag="hblock_tag_46" canDelete="false" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2395" tag="hblock_tag_47" canDelete="false" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2396" tag="hblock_tag_48" canDelete="false" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2396" tag="hblock_tag_49" canDelete="false" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2397" tag="hblock_tag_50" canDelete="false" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2397" tag="hblock_tag_51" canDelete="false" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2398" tag="hblock_tag_52" canDelete="false" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2398" tag="hblock_tag_53" canDelete="false" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2399" tag="hblock_tag_54" canDelete="false" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2399" tag="hblock_tag_55" canDelete="false" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2400" tag="hblock_tag_56" canDelete="false" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2400" tag="hblock_tag_57" canDelete="false" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2401" tag="hblock_tag_58" canDelete="false" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2401" tag="hblock_tag_59" canDelete="false" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2402" tag="hblock_tag_60" canDelete="false" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2402" tag="hblock_tag_61" canDelete="false" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2403" tag="hblock_tag_62" canDelete="false" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2403" tag="hblock_tag_63" canDelete="false" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2404" tag="hblock_tag_64" canDelete="false" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2404" tag="hblock_tag_65" canDelete="false" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2405" tag="hblock_tag_66" canDelete="false" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2405" tag="hblock_tag_67" canDelete="false" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2406" tag="hblock_tag_68" canDelete="false" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2406" tag="hblock_tag_69" canDelete="false" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2407" tag="hblock_tag_70" canDelete="false" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2407" tag="hblock_tag_71" canDelete="false" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2408" tag="hblock_tag_72" canDelete="false" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2408" tag="hblock_tag_73" canDelete="false" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2409" tag="hblock_tag_74" canDelete="false" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2409" tag="hblock_tag_75" canDelete="false" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2410" tag="hblock_tag_76" canDelete="false" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2410" tag="hblock_tag_77" canDelete="false" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2411" tag="hblock_tag_78" canDelete="false" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2411" tag="hblock_tag_79" canDelete="false" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2412" tag="hblock_tag_80" canDelete="false" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2412" tag="hblock_tag_81" canDelete="false" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2413" tag="hblock_tag_82" canDelete="false" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2413" tag="hblock_tag_83" canDelete="false" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2414" tag="hblock_tag_84" canDelete="false" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2414" tag="hblock_tag_85" canDelete="false" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2415" tag="hblock_tag_86" canDelete="false" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2415" tag="hblock_tag_87" canDelete="false" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2416" tag="hblock_tag_88" canDelete="false" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2416" tag="hblock_tag_89" canDelete="false" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2417" tag="hblock_tag_90" canDelete="false" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2417" tag="hblock_tag_91" canDelete="false" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2418" tag="hblock_tag_92" canDelete="false" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2418" tag="hblock_tag_93" canDelete="false" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2419" tag="hblock_tag_94" canDelete="false" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2419" tag="hblock_tag_95" canDelete="false" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2420" tag="hblock_tag_96" canDelete="false" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2420" tag="hblock_tag_97" canDelete="false" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2421" tag="hblock_tag_98" canDelete="false" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2421" tag="hblock_tag_99" canDelete="false" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2424" tag="hblock_tag_100" canDelete="false" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2424" tag="hblock_tag_101" canDelete="false" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2425" tag="hblock_tag_102" canDelete="false" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2425" tag="hblock_tag_103" canDelete="false" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2426" tag="hblock_tag_104" canDelete="false" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2426" tag="hblock_tag_105" canDelete="false" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2427" tag="hblock_tag_106" canDelete="false" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2427" tag="hblock_tag_107" canDelete="false" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2428" tag="hblock_tag_108" canDelete="false" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2428" tag="hblock_tag_109" canDelete="false" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2429" tag="hblock_tag_110" canDelete="false" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2429" tag="hblock_tag_111" canDelete="false" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2430" tag="hblock_tag_112" canDelete="false" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2430" tag="hblock_tag_113" canDelete="false" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2431" tag="hblock_tag_114" canDelete="false" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2431" tag="hblock_tag_115" canDelete="false" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2432" tag="hblock_tag_116" canDelete="false" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2432" tag="hblock_tag_117" canDelete="false" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2433" tag="hblock_tag_118" canDelete="false" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2433" tag="hblock_tag_119" canDelete="false" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2434" tag="hblock_tag_120" canDelete="false" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2434" tag="hblock_tag_121" canDelete="false" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2435" tag="hblock_tag_122" canDelete="false" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2435" tag="hblock_tag_123" canDelete="false" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2436" tag="hblock_tag_124" canDelete="false" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2436" tag="hblock_tag_125" canDelete="false" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2437" tag="hblock_tag_126" canDelete="false" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2437" tag="hblock_tag_127" canDelete="false" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2438" tag="hblock_tag_128" canDelete="false" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2438" tag="hblock_tag_129" canDelete="false" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2439" tag="hblock_tag_130" canDelete="false" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2439" tag="hblock_tag_131" canDelete="false" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2440" tag="hblock_tag_132" canDelete="false" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2440" tag="hblock_tag_133" canDelete="false" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2442" tag="hblock_tag_134" canDelete="false" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2442" tag="hblock_tag_135" canDelete="false" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2443" tag="hblock_tag_136" canDelete="false" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2443" tag="hblock_tag_137" canDelete="false" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2444" tag="hblock_tag_138" canDelete="false" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2444" tag="hblock_tag_139" canDelete="false" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2445" tag="hblock_tag_140" canDelete="false" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2445" tag="hblock_tag_141" canDelete="false" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2446" tag="hblock_tag_142" canDelete="false" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2446" tag="hblock_tag_143" canDelete="false" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2447" tag="hblock_tag_144" canDelete="false" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2447" tag="hblock_tag_145" canDelete="false" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_146" canDelete="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_147" canDelete="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_148" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_149" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_150" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_151" canDelete="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_152" canDelete="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_153" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_154" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_155" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_156" canDelete="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_157" canDelete="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_158" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_159" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_160" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_161" canDelete="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_162" canDelete="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_163" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_164" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_165" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_166" canDelete="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_167" canDelete="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_168" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_169" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_170" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_171" canDelete="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_172" canDelete="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_173" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_174" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_175" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_176" canDelete="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_177" canDelete="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_178" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_179" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_180" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_181" canDelete="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_182" canDelete="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_183" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_184" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_185" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_186" canDelete="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_187" canDelete="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_188" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_189" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_190" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="2448" tag="operation_2448" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2453" tag="operation_2453" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2455" tag="operation_2455" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2456" tag="operation_2456" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2457" tag="operation_2457" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2458" tag="operation_2458" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2459" tag="operation_2459" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2460" tag="operation_2460" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2462" tag="operation_2462" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2463" tag="operation_2463" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2464" tag="operation_2464" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2465" tag="operation_2465" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2466" tag="operation_2466" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2467" tag="operation_2467" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2468" tag="operation_2468" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2469" tag="operation_2469" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2470" tag="operation_2470" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2472" tag="operation_2472" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2473" tag="operation_2473" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2474" tag="operation_2474" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2475" tag="operation_2475" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2476" tag="operation_2476" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2477" tag="operation_2477" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2480" tag="operation_2480" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2481" tag="operation_2481" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2484" tag="operation_2484" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2486" tag="operation_2486" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2487" tag="operation_2487" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2488" tag="operation_2488" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2492" tag="operation_2492" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2494" tag="operation_2494" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2495" tag="operation_2495" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2496" tag="operation_2496" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2498" tag="operation_2498" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2500" tag="operation_2500" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2502" tag="operation_2502" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2504" tag="operation_2504" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2506" tag="operation_2506" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2508" tag="operation_2508" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2510" tag="operation_2510" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2512" tag="operation_2512" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2514" tag="operation_2514" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2515" tag="operation_2515" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2516" tag="operation_2516" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2517" tag="operation_2517" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2519" tag="operation_2519" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2520" tag="operation_2520" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2521" tag="operation_2521" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2522" tag="operation_2522" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2523" tag="operation_2523" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2524" tag="operation_2524" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2525" tag="operation_2525" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2526" tag="operation_2526" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2527" tag="operation_2527" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2528" tag="operation_2528" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2533" tag="operation_2533" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2535" tag="operation_2535" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2536" tag="operation_2536" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2538" tag="operation_2538" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2539" tag="operation_2539" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2542" tag="operation_2542" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2544" tag="operation_2544" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2546" tag="operation_2546" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2549" tag="operation_2549" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2551" tag="operation_2551" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2553" tag="operation_2553" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2554" tag="operation_2554" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2555" tag="operation_2555" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2558" tag="operation_2558" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2559" tag="operation_2559" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2562" tag="operation_2562" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2566" tag="operation_2566" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisview.cpp - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.cpp&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2367" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2367" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2367" tag="hblock_tag_0" canDelete="false" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2367" tag="hblock_tag_1" canDelete="false" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2370" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2370" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2370" tag="hblock_tag_2" canDelete="false" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2370" tag="hblock_tag_3" canDelete="false" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2371" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2371" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2371" tag="hblock_tag_4" canDelete="false" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2371" tag="hblock_tag_5" canDelete="false" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2372" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2372" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2372" tag="hblock_tag_6" canDelete="false" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2372" tag="hblock_tag_7" canDelete="false" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2373" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2373" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2373" tag="hblock_tag_8" canDelete="false" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2373" tag="hblock_tag_9" canDelete="false" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2374" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2374" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2374" tag="hblock_tag_10" canDelete="false" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2374" tag="hblock_tag_11" canDelete="false" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2375" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2375" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2375" tag="hblock_tag_12" canDelete="false" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2375" tag="hblock_tag_13" canDelete="false" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2376" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2376" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2376" tag="hblock_tag_14" canDelete="false" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2376" tag="hblock_tag_15" canDelete="false" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2377" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2377" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2377" tag="hblock_tag_16" canDelete="false" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2377" tag="hblock_tag_17" canDelete="false" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2378" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2378" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2378" tag="hblock_tag_18" canDelete="false" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2378" tag="hblock_tag_19" canDelete="false" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2379" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2379" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2379" tag="hblock_tag_20" canDelete="false" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2379" tag="hblock_tag_21" canDelete="false" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2380" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2380" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2380" tag="hblock_tag_22" canDelete="false" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2380" tag="hblock_tag_23" canDelete="false" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2381" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2381" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2381" tag="hblock_tag_24" canDelete="false" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2381" tag="hblock_tag_25" canDelete="false" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2383" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2383" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2383" tag="hblock_tag_26" canDelete="false" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2383" tag="hblock_tag_27" canDelete="false" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2384" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2384" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2384" tag="hblock_tag_28" canDelete="false" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2384" tag="hblock_tag_29" canDelete="false" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2386" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2386" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2386" tag="hblock_tag_30" canDelete="false" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2386" tag="hblock_tag_31" canDelete="false" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2387" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2387" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2387" tag="hblock_tag_32" canDelete="false" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2387" tag="hblock_tag_33" canDelete="false" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2388" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2388" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2388" tag="hblock_tag_34" canDelete="false" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2388" tag="hblock_tag_35" canDelete="false" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2389" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2389" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2389" tag="hblock_tag_36" canDelete="false" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2389" tag="hblock_tag_37" canDelete="false" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2391" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2391" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2391" tag="hblock_tag_38" canDelete="false" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2391" tag="hblock_tag_39" canDelete="false" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2392" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2392" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2392" tag="hblock_tag_40" canDelete="false" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2392" tag="hblock_tag_41" canDelete="false" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2393" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2393" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2393" tag="hblock_tag_42" canDelete="false" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2393" tag="hblock_tag_43" canDelete="false" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2394" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2394" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2394" tag="hblock_tag_44" canDelete="false" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2394" tag="hblock_tag_45" canDelete="false" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2395" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2395" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2395" tag="hblock_tag_46" canDelete="false" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2395" tag="hblock_tag_47" canDelete="false" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2396" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2396" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2396" tag="hblock_tag_48" canDelete="false" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2396" tag="hblock_tag_49" canDelete="false" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2397" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2397" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2397" tag="hblock_tag_50" canDelete="false" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2397" tag="hblock_tag_51" canDelete="false" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2398" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2398" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2398" tag="hblock_tag_52" canDelete="false" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2398" tag="hblock_tag_53" canDelete="false" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2399" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2399" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2399" tag="hblock_tag_54" canDelete="false" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2399" tag="hblock_tag_55" canDelete="false" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2400" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2400" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2400" tag="hblock_tag_56" canDelete="false" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2400" tag="hblock_tag_57" canDelete="false" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2401" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2401" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2401" tag="hblock_tag_58" canDelete="false" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2401" tag="hblock_tag_59" canDelete="false" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2402" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2402" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2402" tag="hblock_tag_60" canDelete="false" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2402" tag="hblock_tag_61" canDelete="false" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2403" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2403" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2403" tag="hblock_tag_62" canDelete="false" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2403" tag="hblock_tag_63" canDelete="false" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2404" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2404" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2404" tag="hblock_tag_64" canDelete="false" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2404" tag="hblock_tag_65" canDelete="false" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2405" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2405" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2405" tag="hblock_tag_66" canDelete="false" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2405" tag="hblock_tag_67" canDelete="false" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2406" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2406" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2406" tag="hblock_tag_68" canDelete="false" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2406" tag="hblock_tag_69" canDelete="false" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2407" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2407" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2407" tag="hblock_tag_70" canDelete="false" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2407" tag="hblock_tag_71" canDelete="false" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2408" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2408" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2408" tag="hblock_tag_72" canDelete="false" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2408" tag="hblock_tag_73" canDelete="false" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2409" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2409" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2409" tag="hblock_tag_74" canDelete="false" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2409" tag="hblock_tag_75" canDelete="false" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2410" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2410" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2410" tag="hblock_tag_76" canDelete="false" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2410" tag="hblock_tag_77" canDelete="false" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2411" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2411" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2411" tag="hblock_tag_78" canDelete="false" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2411" tag="hblock_tag_79" canDelete="false" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2412" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2412" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2412" tag="hblock_tag_80" canDelete="false" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2412" tag="hblock_tag_81" canDelete="false" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2413" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2413" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2413" tag="hblock_tag_82" canDelete="false" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2413" tag="hblock_tag_83" canDelete="false" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2414" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2414" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2414" tag="hblock_tag_84" canDelete="false" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2414" tag="hblock_tag_85" canDelete="false" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2415" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2415" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2415" tag="hblock_tag_86" canDelete="false" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2415" tag="hblock_tag_87" canDelete="false" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2416" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2416" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2416" tag="hblock_tag_88" canDelete="false" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2416" tag="hblock_tag_89" canDelete="false" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2417" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2417" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2417" tag="hblock_tag_90" canDelete="false" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2417" tag="hblock_tag_91" canDelete="false" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2418" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2418" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2418" tag="hblock_tag_92" canDelete="false" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2418" tag="hblock_tag_93" canDelete="false" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2419" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2419" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2419" tag="hblock_tag_94" canDelete="false" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2419" tag="hblock_tag_95" canDelete="false" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2420" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2420" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2420" tag="hblock_tag_96" canDelete="false" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2420" tag="hblock_tag_97" canDelete="false" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2421" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2421" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2421" tag="hblock_tag_98" canDelete="false" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2421" tag="hblock_tag_99" canDelete="false" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2424" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2424" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2424" tag="hblock_tag_100" canDelete="false" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2424" tag="hblock_tag_101" canDelete="false" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2425" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2425" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2425" tag="hblock_tag_102" canDelete="false" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2425" tag="hblock_tag_103" canDelete="false" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2426" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2426" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2426" tag="hblock_tag_104" canDelete="false" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2426" tag="hblock_tag_105" canDelete="false" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2427" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2427" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2427" tag="hblock_tag_106" canDelete="false" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2427" tag="hblock_tag_107" canDelete="false" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2428" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2428" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2428" tag="hblock_tag_108" canDelete="false" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2428" tag="hblock_tag_109" canDelete="false" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2429" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2429" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2429" tag="hblock_tag_110" canDelete="false" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2429" tag="hblock_tag_111" canDelete="false" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2430" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2430" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2430" tag="hblock_tag_112" canDelete="false" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2430" tag="hblock_tag_113" canDelete="false" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2431" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2431" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2431" tag="hblock_tag_114" canDelete="false" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2431" tag="hblock_tag_115" canDelete="false" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2432" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2432" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2432" tag="hblock_tag_116" canDelete="false" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2432" tag="hblock_tag_117" canDelete="false" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2433" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2433" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2433" tag="hblock_tag_118" canDelete="false" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2433" tag="hblock_tag_119" canDelete="false" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2434" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2434" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2434" tag="hblock_tag_120" canDelete="false" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2434" tag="hblock_tag_121" canDelete="false" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2435" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2435" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2435" tag="hblock_tag_122" canDelete="false" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2435" tag="hblock_tag_123" canDelete="false" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2436" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2436" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2436" tag="hblock_tag_124" canDelete="false" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2436" tag="hblock_tag_125" canDelete="false" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2437" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2437" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2437" tag="hblock_tag_126" canDelete="false" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2437" tag="hblock_tag_127" canDelete="false" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2438" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2438" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2438" tag="hblock_tag_128" canDelete="false" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2438" tag="hblock_tag_129" canDelete="false" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2439" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2439" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2439" tag="hblock_tag_130" canDelete="false" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2439" tag="hblock_tag_131" canDelete="false" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2440" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2440" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2440" tag="hblock_tag_132" canDelete="false" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2440" tag="hblock_tag_133" canDelete="false" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2442" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2442" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2442" tag="hblock_tag_134" canDelete="false" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2442" tag="hblock_tag_135" canDelete="false" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2443" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2443" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2443" tag="hblock_tag_136" canDelete="false" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2443" tag="hblock_tag_137" canDelete="false" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2444" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2444" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2444" tag="hblock_tag_138" canDelete="false" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2444" tag="hblock_tag_139" canDelete="false" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2445" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2445" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2445" tag="hblock_tag_140" canDelete="false" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2445" tag="hblock_tag_141" canDelete="false" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2446" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2446" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2446" tag="hblock_tag_142" canDelete="false" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2446" tag="hblock_tag_143" canDelete="false" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2447" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2447" tag="" canDelete="false" indentLevel="1" role_id="-1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2447" tag="hblock_tag_144" canDelete="false" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2447" tag="hblock_tag_145" canDelete="false" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2366" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_146" canDelete="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_147" canDelete="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_148" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_149" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_150" canDelete="false" writeOutText="false" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2368" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_151" canDelete="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_152" canDelete="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_153" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_154" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_155" canDelete="false" writeOutText="false" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2369" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_156" canDelete="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_157" canDelete="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_158" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_159" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_160" canDelete="false" writeOutText="false" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2382" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_161" canDelete="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_162" canDelete="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_163" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_164" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_165" canDelete="false" writeOutText="false" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2385" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_166" canDelete="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_167" canDelete="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_168" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_169" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_170" canDelete="false" writeOutText="false" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2390" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_171" canDelete="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_172" canDelete="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_173" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_174" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_175" canDelete="false" writeOutText="false" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2422" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_176" canDelete="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_177" canDelete="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_178" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_179" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_180" canDelete="false" writeOutText="false" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2423" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_181" canDelete="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_182" canDelete="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_183" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_184" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_185" canDelete="false" writeOutText="false" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2441" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="" canDelete="false" indentLevel="1" role_id="0" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_186" canDelete="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_187" canDelete="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_188" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_189" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_190" canDelete="false" writeOutText="false" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <codedocument writeOutCode="false" package="" id="Makefile_DOC" fileExt="" fileName="Makefile" >
+ <textblocks/>
+ <header>
+ <codecomment tag="" />
+ </header>
+ </codedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader9" tqparent_class="9" fileExt=".h" fileName="kisbuildersubject" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISBUILDERSUBJECT_H&amp;#010;#define KISBUILDERSUBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="9" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisBuilderSubject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisBuilderSubject ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="10" tag="operation_10" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="11" tag="operation_11" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISBUILDERSUBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbuildersubject.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader12" tqparent_class="12" fileExt=".h" fileName="kisimagemagickconverter" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGEMAGICKCONVERTER_H&amp;#010;#define KISIMAGEMAGICKCONVERTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagebuilder_result.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="12" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisImageMagickConverter&amp;#010;Build a KisImage representation of an image file." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisImageMagickConverter ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="20" tag="operation_20" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param adapter " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="25" tag="operation_25" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri &amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="28" tag="operation_28" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="31" tag="operation_31" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="36" tag="operation_36" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="40" tag="operation_40" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="41" tag="operation_41" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="42" tag="operation_42" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="18" tag="operation_18" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="23" tag="operation_23" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="33" tag="operation_33" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri &amp;#010;@param isBlob " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="37" tag="operation_37" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param adapter " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="13" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="14" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="15" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KisDoc * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="16" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="17" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_stop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="13" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="13" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="14" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="14" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="15" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="15" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="16" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="16" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="17" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="17" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGEMAGICKCONVERTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagemagickconverter.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="13" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="13" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="13" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="13" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="13" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="14" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="14" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="14" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="14" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="14" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="15" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="15" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KisDoc * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="15" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="15" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="15" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="16" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="16" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="16" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="16" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="16" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="17" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="17" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_stop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="17" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="17" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="17" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader44" tqparent_class="44" fileExt=".h" fileName="kisbuildermonitor" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISBUILDERMONITOR_H&amp;#010;#define KISBUILDERMONITOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;vkisbuildersubject.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="44" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisBuilderMonitor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisBuilderMonitor ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="46" tag="operation_46" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="49" tag="operation_49" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="51" tag="operation_51" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="53" tag="operation_53" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="45" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" vKisBuilderSubject m_subjects;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="45" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="45" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISBUILDERMONITOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbuildermonitor.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="45" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="45" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" vKisBuilderSubject m_subjects;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="45" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="45" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="45" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2390" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader55" tqparent_class="55" fileExt=".h" fileName="kisimagebuilder_result" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGEBUILDER_RESULT_H&amp;#010;#define KISIMAGEBUILDER_RESULT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="55" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisImageBuilder_Result&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisImageBuilder_Result ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGEBUILDER_RESULT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagebuilder_result.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader69" tqparent_class="69" fileExt=".h" fileName="kisimagebuilder_step" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGEBUILDER_STEP_H&amp;#010;#define KISIMAGEBUILDER_STEP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="69" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisImageBuilder_Step&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisImageBuilder_Step ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGEBUILDER_STEP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagebuilder_step.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader81" tqparent_class="81" fileExt=".h" fileName="kisstrategycolorspacecmyk" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSTRATEGYCOLORSPACECMYK_H&amp;#010;#define KISSTRATEGYCOLORSPACECMYK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;colorlut.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="81" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisStrategyColorSpaceCMYK&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisStrategyColorSpaceCMYK ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="86" tag="operation_86" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="87" tag="operation_87" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="90" tag="operation_90" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="94" tag="operation_94" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="97" tag="operation_97" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="101" tag="operation_101" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="104" tag="operation_104" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="108" tag="operation_108" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param projection &amp;#010;@param painter &amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="115" tag="operation_115" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="125" tag="operation_125" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="134" tag="operation_134" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="82" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_buf;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="83" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KPixmapIO m_pixio;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="84" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="85" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" ColorLUT m_rgbLUT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="82" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="82" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="83" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="83" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="84" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="84" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="85" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="85" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSTRATEGYCOLORSPACECMYK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspacecmyk.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="82" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="82" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_buf;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="82" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="82" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="82" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="83" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="83" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KPixmapIO m_pixio;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="83" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="83" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="83" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="84" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="84" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="84" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="84" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="84" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="85" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="85" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" ColorLUT m_rgbLUT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="85" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="85" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="85" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader135" tqparent_class="135" fileExt=".h" fileName="rgb" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef RGB_H&amp;#010;#define RGB_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="135" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class RGB&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="136" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM b;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="137" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM g;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="138" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM r;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="RGB ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="136" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="136" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="137" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="137" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="138" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="138" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //RGB_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; rgb.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="136" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="136" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM b;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="136" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="136" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="136" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="137" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="137" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM g;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="137" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="137" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="137" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="138" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM r;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="138" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="138" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="138" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader139" tqparent_class="139" fileExt=".h" fileName="kisstrategycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSTRATEGYCOLORSPACE_H&amp;#010;#define KISSTRATEGYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="139" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisStrategyColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisStrategyColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="142" tag="operation_142" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="145" tag="operation_145" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="148" tag="operation_148" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="152" tag="operation_152" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="155" tag="operation_155" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="159" tag="operation_159" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="162" tag="operation_162" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="166" tag="operation_166" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param projection &amp;#010;@param painter &amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="173" tag="operation_173" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="183" tag="operation_183" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="192" tag="operation_192" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="140" tag="operation_140" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="143" tag="operation_143" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSTRATEGYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspace.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader193" tqparent_class="193" fileExt=".h" fileName="kiscolorspacefactoryinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOLORSPACEFACTORYINTERFACE_H&amp;#010;#define KISCOLORSPACEFACTORYINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="193" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisColorSpaceFactoryInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="194" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisColorSpaceFactoryInterface m_singleton;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisColorSpaceFactoryInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="197" tag="operation_197" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="200" tag="operation_200" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="202" tag="operation_202" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param imgType " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="204" tag="operation_204" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="205" tag="operation_205" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="195" tag="operation_195" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="198" tag="operation_198" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOLORSPACEFACTORYINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscolorspacefactoryinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:16&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="194" field_type="1" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="194" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisColorSpaceFactoryInterface m_singleton;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="194" field_type="1" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="194" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisColorSpaceFactoryInterface ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="194" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="194" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="194" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="194" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="194" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="194" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader206" tqparent_class="206" fileExt=".h" fileName="kisstrategycolorspacergb" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSTRATEGYCOLORSPACERGB_H&amp;#010;#define KISSTRATEGYCOLORSPACERGB_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="206" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisStrategyColorSpaceRGB&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisStrategyColorSpaceRGB ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="210" tag="operation_210" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="211" tag="operation_211" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="214" tag="operation_214" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="218" tag="operation_218" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="221" tag="operation_221" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="225" tag="operation_225" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="228" tag="operation_228" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="232" tag="operation_232" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param projection &amp;#010;@param painter &amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="239" tag="operation_239" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="249" tag="operation_249" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param stride &amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcstride &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="258" tag="operation_258" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="207" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_buf;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="208" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KPixmapIO m_pixio;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="209" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="207" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="207" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="208" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="208" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="209" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="209" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSTRATEGYCOLORSPACERGB_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategycolorspacergb.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="207" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="207" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_buf;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="207" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="207" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="207" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="208" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="208" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KPixmapIO m_pixio;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="208" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="208" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="208" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="209" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="209" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="209" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="209" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="209" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader259" tqparent_class="259" fileExt=".h" fileName="cmyk" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef CMYK_H&amp;#010;#define CMYK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="259" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class CMYK&amp;#010;This class implements the conversion of the Chalk images that contain cmy + transparency&amp;#010;data to rbg for screen rendering." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="260" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM c;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="261" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM k;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="262" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="263" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="CMYK ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="260" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="260" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="261" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="261" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="262" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="262" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="263" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="263" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="264" tag="operation_264" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //CMYK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; cmyk.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="260" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="260" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM c;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="260" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="260" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="261" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="261" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM k;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="261" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="261" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="262" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="262" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="262" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="262" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="263" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="263" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="263" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="263" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader266" tqparent_class="266" fileExt=".h" fileName="kiscolorspacefactoryflyweight" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOLORSPACEFACTORYFLYWEIGHT_H&amp;#010;#define KISCOLORSPACEFACTORYFLYWEIGHT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;kisstrategycolorspacesp.h&quot;&amp;#010;#include &quot;acflyweights.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="266" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisColorSpaceFactoryFlyweight&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisColorSpaceFactoryFlyweight ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="268" tag="operation_268" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="269" tag="operation_269" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="271" tag="operation_271" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param imgType " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="275" tag="operation_275" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="273" tag="operation_273" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param imgType " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="267" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" acFlyweights m_flyweights;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="267" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="267" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOLORSPACEFACTORYFLYWEIGHT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscolorspacefactoryflyweight.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:17&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="267" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="267" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" acFlyweights m_flyweights;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="267" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="267" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader283" tqparent_class="283" fileExt=".h" fileName="kisscopedlock" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSCOPEDLOCK_H&amp;#010;#define KISSCOPEDLOCK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="283" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisScopedLock&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisScopedLock ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="285" tag="operation_285" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param lock &amp;#010;@param initialLock " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="288" tag="operation_288" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="289" tag="operation_289" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="290" tag="operation_290" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="291" tag="operation_291" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="284" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex * m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="284" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="284" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSCOPEDLOCK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisscopedlock.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:09&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="284" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="284" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex * m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="284" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="284" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader292" tqparent_class="292" fileExt=".h" fileName="kisstrategymove" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSTRATEGYMOVE_H&amp;#010;#define KISSTRATEGYMOVE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="292" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisStrategyMove&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisStrategyMove ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="302" tag="operation_302" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="303" tag="operation_303" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="307" tag="operation_307" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="309" tag="operation_309" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos &amp;#010;@param undo " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="312" tag="operation_312" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="314" tag="operation_314" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param x2 &amp;#010;@param y2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="319" tag="operation_319" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt1 &amp;#010;@param pt2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="322" tag="operation_322" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="324" tag="operation_324" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="300" tag="operation_300" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="305" tag="operation_305" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="293" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvasControllerInterface * m_controller;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="294" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KoDocument * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="295" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_dragStart;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="296" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dragging;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="297" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_layerPosition;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="298" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_layerStart;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="299" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvasSubject * m_subject;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="293" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="293" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="294" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="294" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="295" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="295" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="296" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="296" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="297" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="297" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="298" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="298" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="299" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="299" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSTRATEGYMOVE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisstrategymove.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:15&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="293" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="293" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvasControllerInterface * m_controller;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="293" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="293" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="293" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="294" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="294" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KoDocument * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="294" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="294" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="294" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="295" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="295" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_dragStart;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="295" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="295" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="295" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="296" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="296" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dragging;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="296" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="296" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="296" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="297" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="297" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_layerPosition;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="297" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="297" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="297" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="298" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="298" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_layerStart;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="298" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="298" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="298" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="299" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="299" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvasSubject * m_subject;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="299" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="299" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="299" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader325" tqparent_class="325" fileExt=".h" fileName="kistilemgr" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILEMGR_H&amp;#010;#define KISTILEMGR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kispixeldatasp.h&quot;&amp;#010;#include &quot;vkistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="325" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTileMgr&amp;#010;KisTileMgr manages the imagedata that for implementations of KisRenderInterface.&amp;#010;Those are:&amp;#010;&amp;#010;KisPaintDevices&amp;#010; KisLayer&amp;#010; KisBackround&amp;#010; KisSelection&amp;#010; KisChannel&amp;#010; KisMask&amp;#010;&amp;#010;and&amp;#010;&amp;#010;KisImage&amp;#010;&amp;#010;Imagedata is structured in the form of tiles, by default 64 by 64&amp;#010;pixels big. The KisTileMgr is smart enough to hide most of the&amp;#010;details of reading on and writing from tiles.&amp;#010;&amp;#010;@short KisTileMgr manages the pixels for every layer.&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisTileMediator m_mediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTileMgr ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="337" tag="operation_337" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create a new KisTileMgr of width and height with the&amp;#010;specified colour depth. Deep copies the tiles of tm to the&amp;#010;new KisTileMgr.&amp;#010;&amp;#010;XXX: I am not sure what happens when tm is bigger or smaller&amp;#010;than width and height, nor what happens when tm has a&amp;#010;different depth.&amp;#010;@param tm &amp;#010;@param depth &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="342" tag="operation_342" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create a KisTileMgr of width and height with the specified&amp;#010;colour depth.&amp;#010;@param depth &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="346" tag="operation_346" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Creates a new KisTileMgr based on rhs, shares a reference&amp;#010;to the tiles of rhs.&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="350" tag="operation_350" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX?&amp;#010;@param tile &amp;#010;@param tilenum &amp;#010;@param keepold " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="354" tag="operation_354" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Color-depth of the KisRenderInterface implementation&amp;#010;managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="355" tag="operation_355" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX?&amp;#010;@param tile &amp;#010;@param tilenum &amp;#010;@param keepold " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="362" tag="operation_362" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Returns true if this KisTileMgr does not manage any&amp;#010;tiles." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="363" tag="operation_363" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Height in pixels of the total area managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="364" tag="operation_364" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param tile &amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="368" tag="operation_368" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="370" tag="operation_370" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="376" tag="operation_376" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="378" tag="operation_378" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total size in memory the data managed by this KisTileMgr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="379" tag="operation_379" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Number of columns of tiles managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="380" tag="operation_380" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Number of rows of tiles managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="381" tag="operation_381" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Returns the KisPixelData defined by the rectangle x1, y1,&amp;#010;x2, y2. Depending on mode, this data is readable, writable&amp;#010;or both.&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param x2 &amp;#010;@param y2 &amp;#010;@param mode " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="387" tag="operation_387" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="389" tag="operation_389" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Read the area defined by x1, y2, x2, y2 into the buffer. Stride is number of bytes&amp;#010;that a pixel takes in the buffer.&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param x2 &amp;#010;@param y2 &amp;#010;@param buffer &amp;#010;@param stride " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="396" tag="operation_396" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Not sure what this does... Perhaps write changed data if&amp;#010;owner, else mark something invalid. XXX&amp;#010;@param pd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="398" tag="operation_398" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create or duplicate a tile with identity tilenum; tilenum&amp;#010;is computed from the x/y coordinates of the tile in the&amp;#010;image&amp;#010;&amp;#010;XXX: Not sure what 'mode' is. Presumbly related to the&amp;#010;TILEMODE constants.&amp;#010;@param tilenum &amp;#010;@param mode " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="401" tag="operation_401" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create or duplicate a tile at location xpix/ypix.&amp;#010;&amp;#010;XXX: Not sure what 'mode' is. Presumbly related to the&amp;#010;TILEMODE constants.&amp;#010;@param xpix &amp;#010;@param ypix &amp;#010;@param mode " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="405" tag="operation_405" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Puts the x/y coordinates of the top left (?) corner&amp;#010;of tile in coord.&amp;#010;@param tile &amp;#010;@param coord " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="408" tag="operation_408" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Puts the x/y coordinates of the top left (?) corner&amp;#010;of tile in x and y.&amp;#010;@param tile &amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="412" tag="operation_412" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param tilenum &amp;#010;@param src " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="415" tag="operation_415" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="XXX&amp;#010;@param xpix &amp;#010;@param ypix &amp;#010;@param src " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="419" tag="operation_419" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="422" tag="operation_422" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Width in pixels of the total area managed by this KisTileMgr" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="423" tag="operation_423" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="425" tag="operation_425" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Commit the pixel data in buffer.&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param x2 &amp;#010;@param y2 &amp;#010;@param buffer &amp;#010;@param stride " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="432" tag="operation_432" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="335" tag="operation_335" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="348" tag="operation_348" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param ntiles " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="359" tag="operation_359" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param ntiles &amp;#010;@param tm " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="373" tag="operation_373" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile &amp;#010;@param tilenum " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="326" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="327" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="330" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="331" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_ntileCols;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="332" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_ntileRows;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="333" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" vKisTileSP m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="334" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="326" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="326" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="327" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="327" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="330" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="330" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="331" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="331" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="332" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="332" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="333" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="333" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="334" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="334" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILEMGR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilemgr.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="326" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="326" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="326" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="326" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="326" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="327" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="327" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="327" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="327" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="327" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="330" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="330" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="330" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="330" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="330" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="331" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="331" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_ntileCols;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="331" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="331" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="331" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="332" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="332" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_ntileRows;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="332" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="332" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="332" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="333" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="333" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" vKisTileSP m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="333" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="333" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="333" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="334" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="334" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="334" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="334" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="334" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="329" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisTileMediator m_mediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader328" tqparent_class="328" fileExt=".h" fileName="kistilemediator" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILEMEDIATOR_H&amp;#010;#define KISTILEMEDIATOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="328" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTileMediator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTileMgr ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTileMediator ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="438" tag="operation_438" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="441" tag="operation_441" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile &amp;#010;@param mgr &amp;#010;@param tilenum " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="445" tag="operation_445" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile &amp;#010;@param mgr &amp;#010;@param tilenum " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="449" tag="operation_449" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param mgr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="451" tag="operation_451" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile &amp;#010;@param mgr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="454" tag="operation_454" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="436" tag="operation_436" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="439" tag="operation_439" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="433" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMediatorSingleton * m_instance;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="434" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="435" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ref;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="433" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="433" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="434" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="434" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="435" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="435" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILEMEDIATOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilemediator.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="433" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="433" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMediatorSingleton * m_instance;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="433" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="433" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="434" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="434" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="434" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="434" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="435" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="435" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ref;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="435" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="435" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="329" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="329" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTileMgr ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="329" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="329" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="329" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="329" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="329" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="329" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader455" tqparent_class="455" fileExt=".h" fileName="kistileswapinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILESWAPINTERFACE_H&amp;#010;#define KISTILESWAPINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="455" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTileSwapInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTile ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTileSwapInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="456" tag="operation_456" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="457" tag="operation_457" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="459" tag="operation_459" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param swapNo " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="461" tag="operation_461" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="463" tag="operation_463" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="465" tag="operation_465" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="467" tag="operation_467" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="469" tag="operation_469" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="471" tag="operation_471" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILESWAPINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistileswapinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="492" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTile ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader472" tqparent_class="472" fileExt=".h" fileName="kistilecacheinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILECACHEINTERFACE_H&amp;#010;#define KISTILECACHEINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="472" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTileCacheInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTile ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTileCacheInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="473" tag="operation_473" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="474" tag="operation_474" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="476" tag="operation_476" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="478" tag="operation_478" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param nelements " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="480" tag="operation_480" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILECACHEINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilecacheinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:01&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="482" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisTile ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader481" tqparent_class="481" fileExt=".h" fileName="kistile" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILE_H&amp;#010;#define KISTILE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;drawinghints.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="481" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTile&amp;#010;Provides abstraction to a tile. A tile tqcontains&amp;#010;a part of a layer. Layers form an image." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisTileCacheInterface m_cache;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisTileSwapInterface m_swap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTile ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_20" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="498" tag="operation_498" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="500" tag="operation_500" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param depth &amp;#010;@param cache &amp;#010;@param swap " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="504" tag="operation_504" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="505" tag="operation_505" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xoff &amp;#010;@param yoff " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="508" tag="operation_508" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="509" tag="operation_509" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="510" tag="operation_510" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param val " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="512" tag="operation_512" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="514" tag="operation_514" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="515" tag="operation_515" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="522" tag="operation_522" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="523" tag="operation_523" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="524" tag="operation_524" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="525" tag="operation_525" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="526" tag="operation_526" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="527" tag="operation_527" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="528" tag="operation_528" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param row " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="530" tag="operation_530" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param row &amp;#010;@param hint " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="533" tag="operation_533" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="534" tag="operation_534" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="535" tag="operation_535" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="536" tag="operation_536" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="537" tag="operation_537" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="538" tag="operation_538" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param valid " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="540" tag="operation_540" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="541" tag="operation_541" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="543" tag="operation_543" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="544" tag="operation_544" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="545" tag="operation_545" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="517" tag="operation_517" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param depth &amp;#010;@param cache &amp;#010;@param swap " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="521" tag="operation_521" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="483" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="484" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="485" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="486" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="487" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_hints;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="488" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="489" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nref;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="490" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nshare;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="491" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nwrite;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="493" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_swapNo;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="494" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="495" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="483" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="483" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="484" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="484" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="485" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="485" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="486" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="486" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="487" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="487" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="488" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="488" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="489" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="489" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="490" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="490" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="491" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="491" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="493" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="493" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="494" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="494" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="495" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="495" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistile.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:10&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="483" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="483" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM * m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="483" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="483" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="483" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="484" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="484" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="484" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="484" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="484" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="485" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="485" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="485" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="485" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="485" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="486" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="486" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="486" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="486" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="486" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="487" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="487" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_hints;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="487" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="487" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="487" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="488" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="488" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QMutex m_mutex;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="488" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="488" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="488" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="489" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="489" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nref;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="489" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="489" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="489" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="490" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="490" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nshare;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="490" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="490" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="490" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="491" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="491" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_nwrite;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="491" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="491" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="491" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="493" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="493" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_swapNo;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="493" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="493" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="493" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="494" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="494" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="494" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="494" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="494" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="495" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="495" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="495" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="495" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="495" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="482" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="482" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisTileCacheInterface m_cache;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="482" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="482" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="482" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="482" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="482" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="482" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="492" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="492" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisTileSwapInterface m_swap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="492" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="492" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="492" tag="hblock_tag_20" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="492" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="492" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="492" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader546" tqparent_class="546" fileExt=".h" fileName="drawinghints" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef DRAWINGHINTS_H&amp;#010;#define DRAWINGHINTS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="546" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class drawingHints&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="drawingHints ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //DRAWINGHINTS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; drawinghints.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader560" tqparent_class="560" fileExt=".h" fileName="kismerge" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISMERGE_H&amp;#010;#define KISMERGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="560" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisMerge&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisMerge ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="565" tag="operation_565" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param keepOld " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="568" tag="operation_568" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="571" tag="operation_571" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="574" tag="operation_574" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="577" tag="operation_577" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layers " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="561" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="562" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_keepOld;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="563" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="564" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" cond_t m_test;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="561" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="561" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="562" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="562" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="563" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="563" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="564" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="564" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISMERGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismerge.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="561" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="561" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="561" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="561" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="561" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="562" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="562" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_keepOld;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="562" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="562" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="562" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="563" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="563" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="563" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="563" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="563" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="564" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="564" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" cond_t m_test;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="564" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="564" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="564" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader583" tqparent_class="583" fileExt=".h" fileName="kisflatten" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISFLATTEN_H&amp;#010;#define KISFLATTEN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="583" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisFlatten&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisFlatten ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="586" tag="operation_586" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="588" tag="operation_588" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="593" tag="operation_593" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="596" tag="operation_596" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param dev " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="603" tag="operation_603" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="606" tag="operation_606" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layers " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param devs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="612" tag="operation_612" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="599" tag="operation_599" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param dev &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="584" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="585" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" cond_t m_test;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="584" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="584" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="585" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="585" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISFLATTEN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisflatten.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="584" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="584" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="584" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="584" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="584" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="585" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="585" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" cond_t m_test;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="585" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="585" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="585" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader613" tqparent_class="613" fileExt=".h" fileName="kisdociface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISDOCIFACE_H&amp;#010;#define KISDOCIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="613" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KIsDocIface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KIsDocIface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="615" tag="operation_615" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="616" tag="operation_616" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param oldName &amp;#010;@param newName " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param limit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param limit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="623" tag="operation_623" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="614" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisDoc * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="614" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="614" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISDOCIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisdociface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:51&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="614" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="614" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisDoc * m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="614" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="614" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="614" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader624" tqparent_class="624" fileExt=".h" fileName="kisalphatqmask" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISALPHAMASK_H&amp;#010;#define KISALPHAMASK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="624" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisAlphaMask&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisAlphaMask ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="629" tag="operation_629" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create an alpha tqmask based on the gray values of the&amp;#010;specified QImage. If the QImage is not grayscale, you're&amp;#010;buggered.&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="631" tag="operation_631" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create an alpha tqmask based on the gray values of the&amp;#010;specified QImage. If the QImage is not grayscale, you're&amp;#010;buggered. The QImage is scaled using QImage::smoothScale,&amp;#010;where the target w and h are computed by taking scale as a&amp;#010;percentage.&amp;#010;@param img &amp;#010;@param scale " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="634" tag="operation_634" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the alpha value at the specified position.&amp;#010;Returns QUANTUM OPACITY_TRANSPARENT if the value is&amp;#010;outside the bounds of the tqmask.&amp;#010;XXX: this is, of course, not the best way of tqmasking.&amp;#010;Better would be to let KisAlphaMask fill a chunk of memory&amp;#010;with the alpha values at the right position, something like&amp;#010;void applyMask(QUANTUM *pixeldata, Q_INT32 pixelWidth,&amp;#010;Q_INT32 alphaPos). That would be fastest, or we could&amp;#010;provide an iterator over the tqmask, that would be nice, too.&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="641" tag="operation_641" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the number of alpha values in a scanline." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="642" tag="operation_642" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the scale factor." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="643" tag="operation_643" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the number of lines in the tqmask." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="644" tag="operation_644" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="637" tag="operation_637" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="639" tag="operation_639" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="625" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="626" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" double m_scale;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="627" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_scaledHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="628" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_scaledWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="625" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="625" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="626" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="626" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="627" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="627" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="628" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="628" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISALPHAMASK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisalphatqmask.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:52:01&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="625" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="625" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="625" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="625" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="626" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="626" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" double m_scale;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="626" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="626" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="627" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="627" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_scaledHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="627" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="627" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="628" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="628" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_scaledWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="628" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="628" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="628" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader645" tqparent_class="645" fileExt=".h" fileName="krayonviewiface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KRAYONVIEWIFACE_H&amp;#010;#define KRAYONVIEWIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="645" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KRayonViewIface&amp;#010;This is the definition of the interface Chalk presents to&amp;#010;dcop." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KRayonViewIface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="647" tag="operation_647" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param view_ " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="649" tag="operation_649" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="651" tag="operation_651" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="652" tag="operation_652" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="653" tag="operation_653" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="654" tag="operation_654" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="655" tag="operation_655" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="656" tag="operation_656" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="657" tag="operation_657" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="658" tag="operation_658" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="659" tag="operation_659" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="660" tag="operation_660" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="661" tag="operation_661" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="662" tag="operation_662" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="663" tag="operation_663" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="664" tag="operation_664" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="665" tag="operation_665" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="666" tag="operation_666" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="667" tag="operation_667" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="668" tag="operation_668" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="669" tag="operation_669" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="646" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisView * m_view;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="646" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="646" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KRAYONVIEWIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; krayonviewiface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="646" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="646" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisView * m_view;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="646" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="646" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="646" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader670" tqparent_class="670" fileExt=".h" fileName="kisimageiface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGEIFACE_H&amp;#010;#define KISIMAGEIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="670" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KIsImageIface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KIsImageIface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="672" tag="operation_672" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img_ " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="674" tag="operation_674" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="675" tag="operation_675" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="676" tag="operation_676" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="677" tag="operation_677" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="678" tag="operation_678" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="680" tag="operation_680" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="671" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisImage * m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGEIFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimageiface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:42&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="671" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="671" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisImage * m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="671" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader681" tqparent_class="681" fileExt=".h" fileName="kisbrush" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISBRUSH_H&amp;#010;#define KISBRUSH_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisresource.h&quot;&amp;#010;#include &quot;enumbrushtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="681" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisBrush&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPainter ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisBrush ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_20" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="693" tag="operation_693" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename &amp;#010;@param data &amp;#010;@param dataPos " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="702" tag="operation_702" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="703" tag="operation_703" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="704" tag="operation_704" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="705" tag="operation_705" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return a tqmask computed from the grey-level values of the&amp;#010;pixels in the brush.&amp;#010;@param scale " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="707" tag="operation_707" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="710" tag="operation_710" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="700" tag="operation_700" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="682" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" enumBrushType m_brushType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="683" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_bytes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="684" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="685" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_header_size;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="686" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="687" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="688" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="689" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_magic_number;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="690" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_tqmasks;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="691" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_version;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="692" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="682" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="682" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="683" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="683" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="685" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="685" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="690" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="690" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="691" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="691" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="692" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="692" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISBRUSH_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbrush.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="682" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="682" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" enumBrushType m_brushType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="682" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="682" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="682" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="683" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="683" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_bytes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="683" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="683" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="683" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="684" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="684" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="684" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="685" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="685" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_header_size;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="685" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="685" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="685" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="686" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="686" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="686" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="687" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="687" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="687" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="688" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="688" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="688" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="689" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="689" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_magic_number;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="689" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="690" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="690" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_tqmasks;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="690" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="690" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="690" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="691" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="691" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_version;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="691" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="691" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="691" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="692" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="692" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="692" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="692" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="692" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1769" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPainter ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2368" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_20" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader711" tqparent_class="711" fileExt=".h" fileName="kisbackground" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISBACKGROUND_H&amp;#010;#define KISBACKGROUND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="711" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisBackground&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisBackground ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="712" tag="operation_712" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="716" tag="operation_716" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="719" tag="operation_719" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISBACKGROUND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisbackground.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader720" tqparent_class="720" fileExt=".h" fileName="enumbrushtype" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef ENUMBRUSHTYPE_H&amp;#010;#define ENUMBRUSHTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="720" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class enumBrushType&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImagePipeBrush ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="enumBrushType ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //ENUMBRUSHTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; enumbrushtype.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1742" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImagePipeBrush ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader727" tqparent_class="727" fileExt=".h" fileName="kiscommand" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOMMAND_H&amp;#010;#define KISCOMMAND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="727" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisCommand&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisCommand ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="730" tag="operation_730" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param undoAdapter " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="732" tag="operation_732" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param undoAdapter " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="736" tag="operation_736" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="737" tag="operation_737" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="738" tag="operation_738" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="739" tag="operation_739" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="735" tag="operation_735" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="728" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="729" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_undoAdapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="728" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="728" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="729" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="729" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOMMAND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscommand.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="728" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="728" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="728" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="728" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="728" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="729" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="729" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_undoAdapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="729" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="729" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="729" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader740" tqparent_class="740" fileExt=".h" fileName="kisguide" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISGUIDE_H&amp;#010;#define KISGUIDE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="740" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisGuide&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="741" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap buffer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="742" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" bool hasBuffer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="743" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" double pos;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="744" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool selected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisGuide ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="741" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="741" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="742" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="742" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="743" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="743" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="744" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="744" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="745" tag="operation_745" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param o " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="747" tag="operation_747" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="748" tag="operation_748" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="749" tag="operation_749" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISGUIDE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisguide.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="741" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="741" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap buffer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="741" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="741" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="741" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="742" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="742" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" bool hasBuffer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="742" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="742" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="742" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="743" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="743" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" double pos;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="743" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="743" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="744" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="744" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool selected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="744" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="744" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader750" tqparent_class="750" fileExt=".h" fileName="kiscanvascontrollerinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCANVASCONTROLLERINTERFACE_H&amp;#010;#define KISCANVASCONTROLLERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="750" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisCanvasControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisCanvasControllerInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="753" tag="operation_753" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="756" tag="operation_756" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="757" tag="operation_757" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="758" tag="operation_758" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="759" tag="operation_759" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="764" tag="operation_764" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="766" tag="operation_766" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="767" tag="operation_767" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="770" tag="operation_770" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="772" tag="operation_772" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="774" tag="operation_774" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="777" tag="operation_777" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="781" tag="operation_781" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="782" tag="operation_782" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="785" tag="operation_785" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="786" tag="operation_786" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="789" tag="operation_789" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="751" tag="operation_751" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="754" tag="operation_754" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCANVASCONTROLLERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvascontrollerinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:49:33&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader790" tqparent_class="790" fileExt=".h" fileName="kisguidemgr" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISGUIDEMGR_H&amp;#010;#define KISGUIDEMGR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisguidesp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;vkisguidesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="790" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisGuideMgr&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImage ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisGuideMgr ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="802" tag="operation_802" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="803" tag="operation_803" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos &amp;#010;@param o " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="806" tag="operation_806" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@param w &amp;#010;@param xOffset &amp;#010;@param yOffset &amp;#010;@param zoom " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="812" tag="operation_812" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param d " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="816" tag="operation_816" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param y &amp;#010;@param d " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="819" tag="operation_819" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param d " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="822" tag="operation_822" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="823" tag="operation_823" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param element " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="825" tag="operation_825" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param d " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="827" tag="operation_827" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param d " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@param w &amp;#010;@param xOffset &amp;#010;@param yOffset &amp;#010;@param zoom " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="835" tag="operation_835" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="837" tag="operation_837" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="838" tag="operation_838" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="839" tag="operation_839" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="846" tag="operation_846" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param element " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="848" tag="operation_848" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="850" tag="operation_850" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="851" tag="operation_851" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="852" tag="operation_852" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="854" tag="operation_854" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="855" tag="operation_855" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="841" tag="operation_841" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size &amp;#010;@param vLine &amp;#010;@param hLine &amp;#010;@param linePattern " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="791" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_hGuideLines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="792" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_hGuideLinesSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="793" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" vKisGuideSP m_lines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="794" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="795" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_patternSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="796" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QSize m_size;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="797" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" vKisGuideSP m_slines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="798" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_vGuideLines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="799" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_vGuideLinesSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="800" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" const char * [] s_xbm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="801" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" const char * [] s_xbm_selected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="791" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="791" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="792" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="792" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="793" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="793" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="794" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="794" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="795" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="795" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="797" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="797" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="798" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="798" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="799" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="799" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="800" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="800" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="801" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="801" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISGUIDEMGR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisguidemgr.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="791" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="791" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_hGuideLines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="791" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="791" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="791" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="792" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="792" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_hGuideLinesSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="792" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="792" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="792" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="793" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="793" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" vKisGuideSP m_lines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="793" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="793" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="793" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="794" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="794" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="794" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="794" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="794" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="795" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="795" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_patternSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="795" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="795" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="795" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="796" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="796" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QSize m_size;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="796" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="797" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="797" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" vKisGuideSP m_slines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="797" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="797" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="797" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="798" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="798" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_vGuideLines;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="798" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="798" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="798" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="799" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="799" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_vGuideLinesSelected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="799" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="799" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="799" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="800" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="800" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" const char * [] s_xbm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="800" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="800" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="800" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="801" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="801" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" const char * [] s_xbm_selected;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="801" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="801" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="801" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1270" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImage ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader856" tqparent_class="856" fileExt=".h" fileName="kisgradient" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISGRADIENT_H&amp;#010;#define KISGRADIENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="856" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisGradient&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPainter ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisGradient ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="861" tag="operation_861" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="862" tag="operation_862" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="865" tag="operation_865" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param palette &amp;#010;@param size " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="869" tag="operation_869" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size &amp;#010;@param ca &amp;#010;@param cb &amp;#010;@param eff &amp;#010;@param ncols " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="875" tag="operation_875" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="876" tag="operation_876" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="879" tag="operation_879" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gradR &amp;#010;@param startColor &amp;#010;@param endColor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gradR &amp;#010;@param startColor &amp;#010;@param endColor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="887" tag="operation_887" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gradR &amp;#010;@param startColor &amp;#010;@param endColor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="891" tag="operation_891" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@param g &amp;#010;@param b &amp;#010;@param palette &amp;#010;@param size " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="897" tag="operation_897" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param _effect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="899" tag="operation_899" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="900" tag="operation_900" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="901" tag="operation_901" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="857" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QMemArray gradArray;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="858" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QImage gradImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="859" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" int mGradientHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" int mGradientWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="857" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="857" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="858" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="858" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="859" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="859" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISGRADIENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisgradient.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="857" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="857" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QMemArray gradArray;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="857" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="857" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="857" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="858" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="858" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QImage gradImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="858" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="858" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="858" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="859" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="859" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" int mGradientHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="859" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="859" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="859" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="860" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" int mGradientWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="860" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1776" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPainter ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2385" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader902" tqparent_class="902" fileExt=".h" fileName="kisdoc" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISDOC_H&amp;#010;#define KISDOC_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisstrategycolorspacemap.h&quot;&amp;#010;#include &quot;vkisimagesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="902" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisDoc&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisDoc ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="914" tag="operation_914" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparentWidget &amp;#010;@param widgetName &amp;#010;@param tqparent &amp;#010;@param name &amp;#010;@param singleViewMode " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="922" tag="operation_922" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="927" tag="operation_927" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="931" tag="operation_931" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="936" tag="operation_936" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="939" tag="operation_939" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="941" tag="operation_941" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="943" tag="operation_943" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param num " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="946" tag="operation_946" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="950" tag="operation_950" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="951" tag="operation_951" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="952" tag="operation_952" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer &amp;#010;@param position " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="956" tag="operation_956" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param name &amp;#010;@param compositeOp &amp;#010;@param opacity &amp;#010;@param pos &amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="965" tag="operation_965" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param name &amp;#010;@param devOpacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="971" tag="operation_971" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param name &amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="975" tag="operation_975" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="978" tag="operation_978" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="981" tag="operation_981" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="987" tag="operation_987" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="998" tag="operation_998" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1001" tag="operation_1001" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param doc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1005" tag="operation_1005" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1007" tag="operation_1007" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param width &amp;#010;@param height &amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1012" tag="operation_1012" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1013" tag="operation_1013" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1014" tag="operation_1014" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param painter &amp;#010;@param rect &amp;#010;@param transparent &amp;#010;@param zoomX &amp;#010;@param zoomY " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1020" tag="operation_1020" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1021" tag="operation_1021" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1023" tag="operation_1023" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1025" tag="operation_1025" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param oldName &amp;#010;@param newName " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1037" tag="operation_1037" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1038" tag="operation_1038" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1040" tag="operation_1040" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer &amp;#010;@param opacity &amp;#010;@param compositeOp &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1046" tag="operation_1046" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1048" tag="operation_1048" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param limit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1052" tag="operation_1052" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param limit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1056" tag="operation_1056" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1057" tag="operation_1057" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="920" tag="operation_920" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param cmd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="924" tag="operation_924" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param macroName " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="933" tag="operation_933" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="949" tag="operation_949" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="990" tag="operation_990" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param elem &amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="993" tag="operation_993" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param elem " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="995" tag="operation_995" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param elem &amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1028" tag="operation_1028" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1031" tag="operation_1031" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1034" tag="operation_1034" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1050" tag="operation_1050" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param undo " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1055" tag="operation_1055" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="903" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisSelectionSP m_clipboard;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="904" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KCommandHistory * m_cmdHistory;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="905" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisStrategyColorSpaceMap m_colorspaces;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="906" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_conversionDepth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="907" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KMacroCommand * m_currentMacro;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="908" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" DCOPObject * m_dcop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="909" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" vKisImageSP m_images;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="910" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" KisNameServer * m_nserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="911" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="912" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_pushedClipboard;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="913" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_undo;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="903" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="903" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="904" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="904" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="905" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="905" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="906" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="906" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="907" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="907" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="908" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="908" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="909" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="909" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="910" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="910" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISDOC_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisdoc.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="903" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="903" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KisSelectionSP m_clipboard;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="903" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="903" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="903" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="904" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="904" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KCommandHistory * m_cmdHistory;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="904" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="904" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="905" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="905" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisStrategyColorSpaceMap m_colorspaces;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="905" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="905" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="906" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="906" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_conversionDepth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="906" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="906" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="907" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="907" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KMacroCommand * m_currentMacro;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="907" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="907" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="908" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="908" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" DCOPObject * m_dcop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="908" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="908" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="909" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="909" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" vKisImageSP m_images;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="909" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="909" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="910" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="910" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" KisNameServer * m_nserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="910" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="910" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="911" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="911" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="911" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="912" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="912" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_pushedClipboard;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="912" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="913" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="913" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_undo;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="913" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2382" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1058" tqparent_class="1058" fileExt=".h" fileName="kiscursor" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCURSOR_H&amp;#010;#define KISCURSOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1058" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisCursor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisCursor ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1059" tag="operation_1059" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1060" tag="operation_1060" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1061" tag="operation_1061" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1062" tag="operation_1062" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1063" tag="operation_1063" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1065" tag="operation_1065" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1066" tag="operation_1066" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1067" tag="operation_1067" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1068" tag="operation_1068" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1069" tag="operation_1069" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1070" tag="operation_1070" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1071" tag="operation_1071" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1072" tag="operation_1072" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1073" tag="operation_1073" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1074" tag="operation_1074" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1075" tag="operation_1075" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1076" tag="operation_1076" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1077" tag="operation_1077" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1078" tag="operation_1078" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1079" tag="operation_1079" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1080" tag="operation_1080" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1081" tag="operation_1081" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1082" tag="operation_1082" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1083" tag="operation_1083" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCURSOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscursor.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1085" tqparent_class="1085" fileExt=".h" fileName="kisconfig" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCONFIG_H&amp;#010;#define KISCONFIG_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1085" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisConfig&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisConfig ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1089" tag="operation_1089" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1092" tag="operation_1092" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1093" tag="operation_1093" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1095" tag="operation_1095" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1096" tag="operation_1096" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1097" tag="operation_1097" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1098" tag="operation_1098" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1099" tag="operation_1099" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1100" tag="operation_1100" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1087" tag="operation_1087" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1090" tag="operation_1090" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1086" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" mutable KConfig * m_cfg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1086" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1086" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCONFIG_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisconfig.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1086" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1086" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" mutable KConfig * m_cfg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1086" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1086" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1086" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1101" tqparent_class="1101" fileExt=".h" fileName="kiscanvasobserver" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCANVASOBSERVER_H&amp;#010;#define KISCANVASOBSERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1101" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisCanvasObserver&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisCanvasObserver ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1104" tag="operation_1104" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1107" tag="operation_1107" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1109" tag="operation_1109" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1102" tag="operation_1102" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1105" tag="operation_1105" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCANVASOBSERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvasobserver.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1110" tqparent_class="1110" fileExt=".h" fileName="kisfactory" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISFACTORY_H&amp;#010;#define KISFACTORY_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1110" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisFactory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisFactory ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1115" tag="operation_1115" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1118" tag="operation_1118" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1119" tag="operation_1119" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparentWidget &amp;#010;@param widgetName &amp;#010;@param tqparent &amp;#010;@param name &amp;#010;@param classname &amp;#010;@param args " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1126" tag="operation_1126" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1127" tag="operation_1127" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1128" tag="operation_1128" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1129" tag="operation_1129" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1111" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KAboutData * s_aboutData;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1112" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KInstance * s_global;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1113" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KisPluginServer * s_pserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1114" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisResourceServer * s_rserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1111" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1111" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1112" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1112" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1113" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1113" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1114" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1114" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISFACTORY_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisfactory.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1111" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1111" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KAboutData * s_aboutData;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1111" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1111" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1112" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1112" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" KInstance * s_global;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1112" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1112" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1113" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1113" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KisPluginServer * s_pserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1113" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1113" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1114" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1114" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisResourceServer * s_rserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1114" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1114" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1130" tqparent_class="1130" fileExt=".h" fileName="kischannel" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCHANNEL_H&amp;#010;#define KISCHANNEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1130" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisChannel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisChannel ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1131" tag="operation_1131" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param name &amp;#010;@param color " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1137" tag="operation_1137" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1139" tag="operation_1139" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xradius &amp;#010;@param yradius " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1142" tag="operation_1142" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1144" tag="operation_1144" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1145" tag="operation_1145" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1146" tag="operation_1146" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param clr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1148" tag="operation_1148" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1151" tag="operation_1151" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1152" tag="operation_1152" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1153" tag="operation_1153" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xradius &amp;#010;@param yradius " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1156" tag="operation_1156" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1157" tag="operation_1157" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1158" tag="operation_1158" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param val " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1160" tag="operation_1160" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xradius &amp;#010;@param yradius " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1163" tag="operation_1163" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1166" tag="operation_1166" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1169" tag="operation_1169" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCHANNEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kischannel.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1170" tqparent_class="1170" fileExt=".h" fileName="kiscanvassubject" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCANVASSUBJECT_H&amp;#010;#define KISCANVASSUBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1170" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisCanvasSubject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisCanvasSubject ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1173" tag="operation_1173" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1176" tag="operation_1176" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1178" tag="operation_1178" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1179" tag="operation_1179" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1180" tag="operation_1180" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1181" tag="operation_1181" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1183" tag="operation_1183" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1184" tag="operation_1184" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1185" tag="operation_1185" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1187" tag="operation_1187" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1188" tag="operation_1188" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1189" tag="operation_1189" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1190" tag="operation_1190" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1192" tag="operation_1192" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1195" tag="operation_1195" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1197" tag="operation_1197" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1171" tag="operation_1171" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1174" tag="operation_1174" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCANVASSUBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kiscanvassubject.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1198" tqparent_class="1198" fileExt=".h" fileName="compositeop" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef COMPOSITEOP_H&amp;#010;#define COMPOSITEOP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1198" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class CompositeOp&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPaintDevice ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="CompositeOp ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //COMPOSITEOP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; compositeop.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1455" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPaintDevice ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1237" tqparent_class="1237" fileExt=".h" fileName="enumimgtype" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef ENUMIMGTYPE_H&amp;#010;#define ENUMIMGTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1237" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class enumImgType&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImage ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPaintDevice ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="enumImgType ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //ENUMIMGTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; enumimgtype.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1285" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisImage ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1458" field_type="4" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisPaintDevice ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1259" tqparent_class="1259" fileExt=".h" fileName="kisimage" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGE_H&amp;#010;#define KISIMAGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kischannelsp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;channeltype.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;#include &quot;pixeltype.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;kisbackgroundsp.h&quot;&amp;#010;#include &quot;vkischannelsp.h&quot;&amp;#010;#include &quot;kocolormap.h&quot;&amp;#010;#include &quot;vkislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1259" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisImage&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisGuideMgr m_guides;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" enumImgType m_type;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisImage ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_33" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_34" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_35" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_38" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_39" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_40" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1294" tag="operation_1294" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param undoAdapter &amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1300" tag="operation_1300" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1302" tag="operation_1302" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1304" tag="operation_1304" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1306" tag="operation_1306" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param n " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1308" tag="operation_1308" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param n " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1310" tag="operation_1310" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1311" tag="operation_1311" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1313" tag="operation_1313" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type &amp;#010;@param active " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1316" tag="operation_1316" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1317" tag="operation_1317" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1318" tag="operation_1318" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel &amp;#010;@param position " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1321" tag="operation_1321" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param position " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1324" tag="operation_1324" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1325" tag="operation_1325" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1327" tag="operation_1327" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1328" tag="operation_1328" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1329" tag="operation_1329" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param npos " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1331" tag="operation_1331" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1333" tag="operation_1333" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1334" tag="operation_1334" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1335" tag="operation_1335" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param cm " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1337" tag="operation_1337" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1340" tag="operation_1340" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1341" tag="operation_1341" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1342" tag="operation_1342" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param history " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1346" tag="operation_1346" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1347" tag="operation_1347" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1348" tag="operation_1348" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1349" tag="operation_1349" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1350" tag="operation_1350" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1351" tag="operation_1351" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1353" tag="operation_1353" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1361" tag="operation_1361" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1362" tag="operation_1362" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1364" tag="operation_1364" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1369" tag="operation_1369" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1371" tag="operation_1371" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param npos " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1373" tag="operation_1373" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1375" tag="operation_1375" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1376" tag="operation_1376" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1378" tag="operation_1378" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1380" tag="operation_1380" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1381" tag="operation_1381" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1382" tag="operation_1382" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1383" tag="operation_1383" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1384" tag="operation_1384" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1385" tag="operation_1385" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1386" tag="operation_1386" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1387" tag="operation_1387" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1392" tag="operation_1392" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1396" tag="operation_1396" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel &amp;#010;@param position " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1399" tag="operation_1399" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param position " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1402" tag="operation_1402" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1404" tag="operation_1404" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1406" tag="operation_1406" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1409" tag="operation_1409" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1411" tag="operation_1411" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xres &amp;#010;@param yres " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1414" tag="operation_1414" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xres &amp;#010;@param yres " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1417" tag="operation_1417" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1419" tag="operation_1419" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1421" tag="operation_1421" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1422" tag="operation_1422" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1424" tag="operation_1424" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1426" tag="operation_1426" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1427" tag="operation_1427" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1430" tag="operation_1430" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1431" tag="operation_1431" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1433" tag="operation_1433" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1434" tag="operation_1434" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1435" tag="operation_1435" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param u " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1437" tag="operation_1437" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1438" tag="operation_1438" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param commit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1440" tag="operation_1440" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1441" tag="operation_1441" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1443" tag="operation_1443" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1445" tag="operation_1445" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1447" tag="operation_1447" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param active " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1450" tag="operation_1450" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1292" tag="operation_1292" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1344" tag="operation_1344" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dev " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1355" tag="operation_1355" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param adapter &amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1394" tag="operation_1394" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1260" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QBitArray m_active;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelSP m_activeChannel;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1262" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_activeLayer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1263" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1264" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1265" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" KisBackgroundSP m_bkg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1266" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" vKisChannelSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1267" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KoColorMap m_clrMap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1268" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1271" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1272" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" vKisLayerSP m_layerStack;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1273" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" vKisLayerSP m_layers;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1274" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_tqmaskClr;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1275" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_tqmaskEnabled;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1276" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_tqmaskInverted;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1278" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" KisNameServer * m_nserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1279" tag="tblock_20" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ntileCols;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1280" tag="tblock_21" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ntileRows;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1281" tag="tblock_22" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1282" tag="tblock_23" canDelete="false" indentLevel="1" role_id="-1" text=" KisSelectionSP m_selection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1283" tag="tblock_24" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelSP m_selectionMask;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1284" tag="tblock_25" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_shadow;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1286" tag="tblock_26" canDelete="false" indentLevel="1" role_id="-1" text=" KCommandHistory * m_undoHistory;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1287" tag="tblock_27" canDelete="false" indentLevel="1" role_id="-1" text=" KURL m_uri;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1288" tag="tblock_28" canDelete="false" indentLevel="1" role_id="-1" text=" QBitArray m_visible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1289" tag="tblock_29" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1290" tag="tblock_30" canDelete="false" indentLevel="1" role_id="-1" text=" double m_xres;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1291" tag="tblock_31" canDelete="false" indentLevel="1" role_id="-1" text=" double m_yres;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1260" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1260" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1262" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1262" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1263" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1263" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1264" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1264" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1265" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1265" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1266" tag="hblock_tag_53" canDelete="false" indentLevel="1" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1266" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1267" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1267" tag="hblock_tag_56" canDelete="false" indentLevel="1" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1268" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1268" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_59" canDelete="false" indentLevel="1" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1271" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1271" tag="hblock_tag_62" canDelete="false" indentLevel="1" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1272" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1272" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1273" tag="hblock_tag_65" canDelete="false" indentLevel="1" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1273" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1274" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1274" tag="hblock_tag_68" canDelete="false" indentLevel="1" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1275" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1275" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1276" tag="hblock_tag_71" canDelete="false" indentLevel="1" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1276" tag="hblock_tag_72" canDelete="false" indentLevel="1" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_73" canDelete="false" indentLevel="1" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_74" canDelete="false" indentLevel="1" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1278" tag="hblock_tag_75" canDelete="false" indentLevel="1" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1278" tag="hblock_tag_76" canDelete="false" indentLevel="1" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1279" tag="hblock_tag_77" canDelete="false" indentLevel="1" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1279" tag="hblock_tag_78" canDelete="false" indentLevel="1" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1280" tag="hblock_tag_79" canDelete="false" indentLevel="1" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1280" tag="hblock_tag_80" canDelete="false" indentLevel="1" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1281" tag="hblock_tag_81" canDelete="false" indentLevel="1" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1281" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1282" tag="hblock_tag_83" canDelete="false" indentLevel="1" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1282" tag="hblock_tag_84" canDelete="false" indentLevel="1" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1283" tag="hblock_tag_85" canDelete="false" indentLevel="1" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1283" tag="hblock_tag_86" canDelete="false" indentLevel="1" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1284" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1284" tag="hblock_tag_88" canDelete="false" indentLevel="1" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1286" tag="hblock_tag_89" canDelete="false" indentLevel="1" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1286" tag="hblock_tag_90" canDelete="false" indentLevel="1" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1287" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1287" tag="hblock_tag_92" canDelete="false" indentLevel="1" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1288" tag="hblock_tag_93" canDelete="false" indentLevel="1" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1288" tag="hblock_tag_94" canDelete="false" indentLevel="1" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1289" tag="hblock_tag_95" canDelete="false" indentLevel="1" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1289" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1290" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1290" tag="hblock_tag_98" canDelete="false" indentLevel="1" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1291" tag="hblock_tag_99" canDelete="false" indentLevel="1" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1291" tag="hblock_tag_100" canDelete="false" indentLevel="1" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimage.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1260" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1260" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QBitArray m_active;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1260" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1260" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1260" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1261" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelSP m_activeChannel;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1261" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1262" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1262" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_activeLayer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1262" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1262" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1262" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1263" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1263" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisUndoAdapter * m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1263" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1263" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1263" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1264" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1264" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1264" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1264" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1264" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1265" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1265" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" KisBackgroundSP m_bkg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1265" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1265" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1265" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1266" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1266" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" vKisChannelSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1266" tag="hblock_tag_53" canDelete="false" indentLevel="1" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1266" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1266" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1267" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1267" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KoColorMap m_clrMap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1267" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1267" tag="hblock_tag_56" canDelete="false" indentLevel="1" classfield_id="1267" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1268" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1268" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1268" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1268" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1268" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1269" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_59" canDelete="false" indentLevel="1" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1269" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1271" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1271" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1271" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1271" tag="hblock_tag_62" canDelete="false" indentLevel="1" classfield_id="1271" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1272" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1272" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" vKisLayerSP m_layerStack;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1272" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1272" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1272" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1273" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1273" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" vKisLayerSP m_layers;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1273" tag="hblock_tag_65" canDelete="false" indentLevel="1" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1273" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1273" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1274" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1274" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_tqmaskClr;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1274" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1274" tag="hblock_tag_68" canDelete="false" indentLevel="1" classfield_id="1274" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1275" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1275" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_tqmaskEnabled;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1275" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1275" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1275" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1276" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1276" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_tqmaskInverted;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1276" tag="hblock_tag_71" canDelete="false" indentLevel="1" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1276" tag="hblock_tag_72" canDelete="false" indentLevel="1" classfield_id="1276" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1277" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_73" canDelete="false" indentLevel="1" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_74" canDelete="false" indentLevel="1" classfield_id="1277" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1278" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1278" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" KisNameServer * m_nserver;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1278" tag="hblock_tag_75" canDelete="false" indentLevel="1" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1278" tag="hblock_tag_76" canDelete="false" indentLevel="1" classfield_id="1278" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1279" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1279" tag="tblock_20" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ntileCols;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1279" tag="hblock_tag_77" canDelete="false" indentLevel="1" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1279" tag="hblock_tag_78" canDelete="false" indentLevel="1" classfield_id="1279" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1280" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1280" tag="tblock_21" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_ntileRows;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1280" tag="hblock_tag_79" canDelete="false" indentLevel="1" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1280" tag="hblock_tag_80" canDelete="false" indentLevel="1" classfield_id="1280" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1281" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1281" tag="tblock_22" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1281" tag="hblock_tag_81" canDelete="false" indentLevel="1" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1281" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="1281" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1282" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1282" tag="tblock_23" canDelete="false" indentLevel="1" role_id="-1" text=" KisSelectionSP m_selection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1282" tag="hblock_tag_83" canDelete="false" indentLevel="1" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1282" tag="hblock_tag_84" canDelete="false" indentLevel="1" classfield_id="1282" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1283" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1283" tag="tblock_24" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelSP m_selectionMask;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1283" tag="hblock_tag_85" canDelete="false" indentLevel="1" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1283" tag="hblock_tag_86" canDelete="false" indentLevel="1" classfield_id="1283" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1284" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1284" tag="tblock_25" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_shadow;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1284" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1284" tag="hblock_tag_88" canDelete="false" indentLevel="1" classfield_id="1284" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1286" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1286" tag="tblock_26" canDelete="false" indentLevel="1" role_id="-1" text=" KCommandHistory * m_undoHistory;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1286" tag="hblock_tag_89" canDelete="false" indentLevel="1" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1286" tag="hblock_tag_90" canDelete="false" indentLevel="1" classfield_id="1286" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1287" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1287" tag="tblock_27" canDelete="false" indentLevel="1" role_id="-1" text=" KURL m_uri;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1287" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1287" tag="hblock_tag_92" canDelete="false" indentLevel="1" classfield_id="1287" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1288" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1288" tag="tblock_28" canDelete="false" indentLevel="1" role_id="-1" text=" QBitArray m_visible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1288" tag="hblock_tag_93" canDelete="false" indentLevel="1" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1288" tag="hblock_tag_94" canDelete="false" indentLevel="1" classfield_id="1288" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1289" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1289" tag="tblock_29" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1289" tag="hblock_tag_95" canDelete="false" indentLevel="1" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1289" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="1289" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1290" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1290" tag="tblock_30" canDelete="false" indentLevel="1" role_id="-1" text=" double m_xres;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1290" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1290" tag="hblock_tag_98" canDelete="false" indentLevel="1" classfield_id="1290" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1291" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1291" tag="tblock_31" canDelete="false" indentLevel="1" role_id="-1" text=" double m_yres;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1291" tag="hblock_tag_99" canDelete="false" indentLevel="1" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1291" tag="hblock_tag_100" canDelete="false" indentLevel="1" classfield_id="1291" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1270" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1270" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisGuideMgr m_guides;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1270" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1270" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1270" tag="hblock_tag_33" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1270" tag="hblock_tag_34" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1270" tag="hblock_tag_35" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1270" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1285" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" enumImgType m_type;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_38" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_39" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_40" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1453" tqparent_class="1453" fileExt=".h" fileName="kispaintdevice" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPAINTDEVICE_H&amp;#010;#define KISPAINTDEVICE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;enumimgtype.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1453" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisPaintDevice&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" CompositeOp m_compositeOp;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" enumImgType m_imgType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisPaintDevice ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_26" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_27" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_28" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1476" tag="operation_1476" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1482" tag="operation_1482" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tm &amp;#010;@param img &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1486" tag="operation_1486" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1491" tag="operation_1491" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1493" tag="operation_1493" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1494" tag="operation_1494" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Reimplemented by KisSelection; here it does nothing useful, but it&amp;#010;cannot be abstract, because otherwise this class would be abstract." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1495" tag="operation_1495" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1496" tag="operation_1496" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1497" tag="operation_1497" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param offx &amp;#010;@param offy &amp;#010;@param offw &amp;#010;@param offh " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1502" tag="operation_1502" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param cm " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1504" tag="operation_1504" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1505" tag="operation_1505" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1506" tag="operation_1506" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name &amp;#010;@param compositeOp " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1513" tag="operation_1513" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1516" tag="operation_1516" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1519" tag="operation_1519" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param mgr " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1521" tag="operation_1521" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1524" tag="operation_1524" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1526" tag="operation_1526" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1529" tag="operation_1529" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1531" tag="operation_1531" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1532" tag="operation_1532" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1534" tag="operation_1534" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1539" tag="operation_1539" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1541" tag="operation_1541" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1543" tag="operation_1543" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param x2 &amp;#010;@param y2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1551" tag="operation_1551" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1553" tag="operation_1553" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1554" tag="operation_1554" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1557" tag="operation_1557" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param c &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1562" tag="operation_1562" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1563" tag="operation_1563" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1564" tag="operation_1564" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1566" tag="operation_1566" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1567" tag="operation_1567" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1570" tag="operation_1570" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1572" tag="operation_1572" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param offx &amp;#010;@param offy &amp;#010;@param offw &amp;#010;@param offh " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1577" tag="operation_1577" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param compositeOp " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1579" tag="operation_1579" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1581" tag="operation_1581" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1583" tag="operation_1583" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param c &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1590" tag="operation_1590" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1592" tag="operation_1592" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1593" tag="operation_1593" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1594" tag="operation_1594" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1597" tag="operation_1597" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1598" tag="operation_1598" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1599" tag="operation_1599" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1600" tag="operation_1600" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1601" tag="operation_1601" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1602" tag="operation_1602" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1607" tag="operation_1607" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1609" tag="operation_1609" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1610" tag="operation_1610" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1612" tag="operation_1612" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1615" tag="operation_1615" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1617" tag="operation_1617" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1618" tag="operation_1618" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1619" tag="operation_1619" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1474" tag="operation_1474" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1527" tag="operation_1527" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1530" tag="operation_1530" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1613" tag="operation_1613" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1454" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1456" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1457" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1459" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1460" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offH;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1461" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offW;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1462" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offX;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1463" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1464" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_owner;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1465" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1466" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_projectionValid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1467" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_quantumSize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1468" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_shadow;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1469" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1470" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_visible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1471" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1472" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_x;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1473" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1454" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1454" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1456" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1456" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1457" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1457" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1459" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1459" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1460" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1460" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1461" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1461" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1462" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1462" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1463" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1463" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1464" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1464" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1465" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1465" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1466" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1466" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1467" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1467" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1468" tag="hblock_tag_53" canDelete="false" indentLevel="1" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1468" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1469" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1469" tag="hblock_tag_56" canDelete="false" indentLevel="1" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1470" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1470" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1471" tag="hblock_tag_59" canDelete="false" indentLevel="1" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1471" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1472" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1472" tag="hblock_tag_62" canDelete="false" indentLevel="1" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1473" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1473" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPAINTDEVICE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispaintdevice.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1454" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1454" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1454" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1454" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1454" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1456" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1456" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_depth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1456" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1456" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1456" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1457" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1457" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1457" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1457" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1457" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1459" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1459" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1459" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1459" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1459" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1460" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1460" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offH;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1460" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1460" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="1460" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1461" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1461" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offW;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1461" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1461" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1461" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1462" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1462" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offX;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1462" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1462" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1462" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1463" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1463" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_offY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1463" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1463" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1463" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1464" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1464" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_owner;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1464" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1464" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1464" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1465" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1465" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap m_projection;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1465" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1465" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1465" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1466" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1466" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_projectionValid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1466" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1466" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1466" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1467" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1467" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_quantumSize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1467" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1467" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1467" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1468" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1468" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_shadow;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1468" tag="hblock_tag_53" canDelete="false" indentLevel="1" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1468" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1468" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1469" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1469" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileMgrSP m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1469" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1469" tag="hblock_tag_56" canDelete="false" indentLevel="1" classfield_id="1469" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1470" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1470" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_visible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1470" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1470" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1470" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1471" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1471" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1471" tag="hblock_tag_59" canDelete="false" indentLevel="1" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1471" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1471" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1472" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1472" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_x;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1472" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1472" tag="hblock_tag_62" canDelete="false" indentLevel="1" classfield_id="1472" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1473" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1473" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1473" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1473" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1473" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1455" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1455" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" CompositeOp m_compositeOp;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1455" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1455" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1455" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1455" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1455" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1455" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1458" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1458" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" enumImgType m_imgType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1458" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1458" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1458" tag="hblock_tag_26" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1458" tag="hblock_tag_27" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1458" tag="hblock_tag_28" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1458" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1620" tqparent_class="1620" fileExt=".h" fileName="kislayer" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISLAYER_H&amp;#010;#define KISLAYER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kistilemgrsp.h&quot;&amp;#010;#include &quot;kistqmasksp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1620" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisLayer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisLayer ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1628" tag="operation_1628" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param name &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1634" tag="operation_1634" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tiles &amp;#010;@param img &amp;#010;@param name &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1639" tag="operation_1639" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1644" tag="operation_1644" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1646" tag="operation_1646" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1647" tag="operation_1647" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqmask " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1649" tag="operation_1649" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param mode " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1651" tag="operation_1651" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqmaskType " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1653" tag="operation_1653" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1654" tag="operation_1654" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param l " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1656" tag="operation_1656" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1657" tag="operation_1657" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1658" tag="operation_1658" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param val " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1660" tag="operation_1660" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1663" tag="operation_1663" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1664" tag="operation_1664" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1666" tag="operation_1666" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1621" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_dx;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1622" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_dy;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1623" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_initial;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1624" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_linked;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1625" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" KisMaskSP m_tqmask;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1626" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m_opacity;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1627" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_preserveTransparency;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1621" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1621" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1622" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1622" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1623" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1623" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1624" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1624" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1625" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1625" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1626" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1626" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISLAYER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kislayer.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1621" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1621" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_dx;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1621" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1621" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1621" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1622" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1622" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_dy;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1622" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1622" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1622" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1623" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1623" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_initial;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1623" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1623" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1623" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1624" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1624" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_linked;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1624" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1624" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1624" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1625" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1625" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" KisMaskSP m_tqmask;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1625" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1625" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1625" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1626" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1626" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m_opacity;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1626" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1626" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1626" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1627" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1627" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_preserveTransparency;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1627" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1667" tqparent_class="1667" fileExt=".h" fileName="kisnameserver" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISNAMESERVER_H&amp;#010;#define KISNAMESERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1667" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisNameServer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisNameServer ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1670" tag="operation_1670" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param prefix &amp;#010;@param seed " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1673" tag="operation_1673" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1674" tag="operation_1674" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1675" tag="operation_1675" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1676" tag="operation_1676" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1668" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_generator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1669" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_prefix;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1668" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1668" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1669" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1669" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISNAMESERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisnameserver.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1668" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1668" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_generator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1668" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1668" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1668" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1669" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1669" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_prefix;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1669" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1669" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1669" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1677" tqparent_class="1677" fileExt=".h" fileName="kismemento" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISMEMENTO_H&amp;#010;#define KISMEMENTO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1677" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisMemento&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisMemento ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1678" tag="operation_1678" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISMEMENTO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismemento.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:11&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1679" tqparent_class="1679" fileExt=".h" fileName="kispaintdevicevisitor" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPAINTDEVICEVISITOR_H&amp;#010;#define KISPAINTDEVICEVISITOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisselectionsp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1679" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisPaintDeviceVisitor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisPaintDeviceVisitor ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1680" tag="operation_1680" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1683" tag="operation_1683" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param dev " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1686" tag="operation_1686" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1689" tag="operation_1689" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layers " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1692" tag="operation_1692" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param devs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1695" tag="operation_1695" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1696" tag="operation_1696" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1699" tag="operation_1699" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param dev " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1702" tag="operation_1702" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param selection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1705" tag="operation_1705" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param layers " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1708" tag="operation_1708" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param devs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1711" tag="operation_1711" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPAINTDEVICEVISITOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispaintdevicevisitor.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1712" tqparent_class="1712" fileExt=".h" fileName="kismementooriginatorinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISMEMENTOORIGINATORINTERFACE_H&amp;#010;#define KISMEMENTOORIGINATORINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kismementosp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1712" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisMementoOriginatorInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisMementoOriginatorInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1715" tag="operation_1715" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1718" tag="operation_1718" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param memento " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1720" tag="operation_1720" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1721" tag="operation_1721" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1713" tag="operation_1713" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1716" tag="operation_1716" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISMEMENTOORIGINATORINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kismementooriginatorinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1722" tqparent_class="1722" fileExt=".h" fileName="kistqmask" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISMASK_H&amp;#010;#define KISMASK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1722" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisMask&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisMask ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1723" tag="operation_1723" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param width &amp;#010;@param height &amp;#010;@param name &amp;#010;@param color " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1729" tag="operation_1729" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1731" tag="operation_1731" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1732" tag="operation_1732" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqmask " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1735" tag="operation_1735" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param val " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1737" tag="operation_1737" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1738" tag="operation_1738" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param owner " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1740" tag="operation_1740" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISMASK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistqmask.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1741" tqparent_class="1741" fileExt=".h" fileName="kisimagepipebrush" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISIMAGEPIPEBRUSH_H&amp;#010;#define KISIMAGEPIPEBRUSH_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1741" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisImagePipeBrush&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" enumBrushType m_brushType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisImagePipeBrush ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1750" tag="operation_1750" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1752" tag="operation_1752" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1753" tag="operation_1753" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1754" tag="operation_1754" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the next image in the pipe." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1755" tag="operation_1755" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1756" tag="operation_1756" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="@return the next tqmask in the pipe.&amp;#010;@param scale " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1758" tag="operation_1758" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1759" tag="operation_1759" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1763" tag="operation_1763" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1761" tag="operation_1761" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param parasite " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1743" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_brushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1744" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_currentBrush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1745" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1746" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1747" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1748" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_numOfBrushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1749" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_parasite;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1743" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1743" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1744" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1744" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1745" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1745" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1746" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1746" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1747" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1747" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1748" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1748" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1749" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1749" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISIMAGEPIPEBRUSH_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisimagepipebrush.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1743" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1743" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_brushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1743" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1743" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1743" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1744" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1744" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_currentBrush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1744" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1744" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1744" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1745" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1745" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QValueVector m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1745" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1745" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1745" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1746" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1746" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1746" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1746" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1746" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1747" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1747" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1747" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1747" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1747" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1748" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1748" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_UINT32 m_numOfBrushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1748" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1748" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="1748" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1749" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1749" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_parasite;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1749" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1749" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1749" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1742" field_type="4" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1742" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" enumBrushType m_brushType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1742" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1742" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1742" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1742" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1742" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1742" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1767" tqparent_class="1767" fileExt=".h" fileName="kispainter" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPAINTER_H&amp;#010;#define KISPAINTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;compositeop.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;float.h&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;kislayersp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1767" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisPainter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisBrush m_brush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisGradient m_gradient;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisPainter ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_24" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1786" tag="operation_1786" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1787" tag="operation_1787" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1791" tag="operation_1791" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1793" tag="operation_1793" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param customName " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1795" tag="operation_1795" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dx &amp;#010;@param dy &amp;#010;@param op &amp;#010;@param src &amp;#010;@param opacity &amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param sw &amp;#010;@param sh " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1805" tag="operation_1805" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dx &amp;#010;@param dy &amp;#010;@param op &amp;#010;@param src &amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param sw &amp;#010;@param sh " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1817" tag="operation_1817" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1818" tag="operation_1818" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1820" tag="operation_1820" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos &amp;#010;@param pressure &amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1825" tag="operation_1825" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos1 &amp;#010;@param pos2 &amp;#010;@param pressure &amp;#010;@param xTilt &amp;#010;@param yTilt &amp;#010;@param savedDist " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1832" tag="operation_1832" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x1 &amp;#010;@param y1 &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1837" tag="operation_1837" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1839" tag="operation_1839" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1845" tag="operation_1845" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@param c &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1852" tag="operation_1852" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1855" tag="operation_1855" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@param c &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1859" tag="operation_1859" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos &amp;#010;@param pressure &amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1864" tag="operation_1864" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos1 &amp;#010;@param pos2 &amp;#010;@param pressure &amp;#010;@param xTilt &amp;#010;@param yTilt &amp;#010;@param savedDist " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1871" tag="operation_1871" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param color " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1873" tag="operation_1873" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param brush " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1875" tag="operation_1875" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param color " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1877" tag="operation_1877" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gradient " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1879" tag="operation_1879" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1881" tag="operation_1881" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param color " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1883" tag="operation_1883" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pattern " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1902" tag="operation_1902" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1784" tag="operation_1784" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1789" tag="operation_1789" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1814" tag="operation_1814" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqmask " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1885" tag="operation_1885" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dsttile &amp;#010;@param src &amp;#010;@param srctile &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1894" tag="operation_1894" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dsttile &amp;#010;@param src &amp;#010;@param srctile &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1768" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_backgroundColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1770" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_brushHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1771" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_brushWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1772" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_dab;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1773" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_device;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1774" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_dirtyRect;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1775" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_fillColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1777" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1778" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_hotSpotX;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1779" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_hotSpotY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1780" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m_opacity;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1781" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_paintColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1782" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" KisPattern * m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1783" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileCommand * m_transaction;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1771" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1771" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1773" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1773" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1777" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1777" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1779" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1779" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1781" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1781" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1783" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1783" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPAINTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispainter.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1768" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1768" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_backgroundColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="1768" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1770" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1770" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_brushHeight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1770" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1771" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1771" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_brushWidth;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1771" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1771" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1771" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1772" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1772" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisLayerSP m_dab;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="1772" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1773" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1773" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_device;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1773" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1773" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1773" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1774" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1774" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_dirtyRect;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1774" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1775" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1775" tag="tblock_8" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_fillColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="hblock_tag_38" canDelete="false" indentLevel="1" classfield_id="1775" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1777" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1777" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1777" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1777" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1777" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1778" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1778" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_hotSpotX;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_41" canDelete="false" indentLevel="1" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1778" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1779" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1779" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_hotSpotY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1779" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1779" tag="hblock_tag_44" canDelete="false" indentLevel="1" classfield_id="1779" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1780" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1780" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" QUANTUM m_opacity;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1780" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1781" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1781" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_paintColor;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1781" tag="hblock_tag_47" canDelete="false" indentLevel="1" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1781" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1781" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1782" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1782" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" KisPattern * m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_50" canDelete="false" indentLevel="1" classfield_id="1782" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1783" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1783" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisTileCommand * m_transaction;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1783" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1783" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1783" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1769" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1769" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisBrush m_brush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1769" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1769" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1769" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1769" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1769" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1769" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1776" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisGradient m_gradient;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1776" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1776" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1776" tag="hblock_tag_24" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1776" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1903" tqparent_class="1903" fileExt=".h" fileName="kisselection" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISSELECTION_H&amp;#010;#define KISSELECTION_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1903" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisSelection&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisSelection ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1911" tag="operation_1911" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param img &amp;#010;@param name &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1916" tag="operation_1916" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param width &amp;#010;@param height &amp;#010;@param imgType &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1921" tag="operation_1921" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1922" tag="operation_1922" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param f " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1924" tag="operation_1924" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1925" tag="operation_1925" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1927" tag="operation_1927" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1930" tag="operation_1930" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1931" tag="operation_1931" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparentX &amp;#010;@param tqparentY &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1936" tag="operation_1936" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1938" tag="operation_1938" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1940" tag="operation_1940" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1941" tag="operation_1941" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1942" tag="operation_1942" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1904" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_clearOnMove;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1905" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_clipImg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1906" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_firstMove;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1907" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1908" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1909" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_parent;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1910" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1904" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1904" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1905" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1905" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1906" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1906" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1907" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1907" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1908" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1908" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1909" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1909" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1910" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1910" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISSELECTION_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisselection.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:50:04&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1904" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1904" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_clearOnMove;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1904" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1904" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1904" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1905" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1905" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_clipImg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1905" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1905" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1905" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1906" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1906" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_firstMove;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1906" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1906" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1906" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1907" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1907" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisImageSP m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1907" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1907" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1907" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1908" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1908" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1908" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1908" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1908" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1909" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1909" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_parent;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1909" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1909" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1909" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1910" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1910" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1910" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1910" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1910" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1943" tqparent_class="1943" fileExt=".h" fileName="kisresourcemediator" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRESOURCEMEDIATOR_H&amp;#010;#define KISRESOURCEMEDIATOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1943" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisResourceMediator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisResourceMediator ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1947" tag="operation_1947" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param mediateOn &amp;#010;@param rserver &amp;#010;@param chooserCaption &amp;#010;@param chooserParent &amp;#010;@param chooserName &amp;#010;@param tqparent &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1955" tag="operation_1955" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1956" tag="operation_1956" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1957" tag="operation_1957" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1959" tag="operation_1959" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param item " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1961" tag="operation_1961" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param item " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1963" tag="operation_1963" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1944" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KoIconItem * m_activeItem;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1945" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisItemChooser * m_chooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1946" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QMap m_items;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1944" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1944" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1945" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1945" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1946" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1946" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRESOURCEMEDIATOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresourcemediator.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1944" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1944" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" KoIconItem * m_activeItem;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1944" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1944" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1944" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1945" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1945" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" KisItemChooser * m_chooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1945" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1945" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1945" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1946" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1946" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QMap m_items;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1946" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1946" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1946" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2369" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2423" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1964" tqparent_class="1964" fileExt=".h" fileName="kisresourceserver" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRESOURCESERVER_H&amp;#010;#define KISRESOURCESERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1964" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisResourceServer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisResourceServer ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1971" tag="operation_1971" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1972" tag="operation_1972" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1973" tag="operation_1973" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1975" tag="operation_1975" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1977" tag="operation_1977" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1979" tag="operation_1979" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1980" tag="operation_1980" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1981" tag="operation_1981" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1982" tag="operation_1982" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1983" tag="operation_1983" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1984" tag="operation_1984" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1974" tag="operation_1974" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1976" tag="operation_1976" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1978" tag="operation_1978" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1965" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_brushFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1966" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_brushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1967" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_patternFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1968" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_patterns;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1969" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_pipebrushFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1970" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_pipebrushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1965" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1965" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1966" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1966" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1967" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1967" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1968" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1968" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1969" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1969" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1970" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1970" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRESOURCESERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresourceserver.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1965" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1965" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_brushFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1965" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1965" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1965" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1966" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1966" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_brushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1966" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1966" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1966" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1967" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1967" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_patternFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1967" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1967" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1967" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1968" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1968" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_patterns;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1968" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1968" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1968" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1969" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1969" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QStringList m_pipebrushFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1969" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1969" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1969" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1970" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1970" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPtrList m_pipebrushes;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1970" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1970" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1970" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1985" tqparent_class="1985" fileExt=".h" fileName="kispluginserver" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPLUGINSERVER_H&amp;#010;#define KISPLUGINSERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;int.h&quot;&amp;#010;#include &quot;plugininfolist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1985" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisPluginServer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisPluginServer ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1988" tag="operation_1988" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1989" tag="operation_1989" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1991" tag="operation_1991" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param menu " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1995" tag="operation_1995" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1993" tag="operation_1993" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param directory " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1986" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" int m_count;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1987" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" PluginInfoList m_plugins;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1986" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1986" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1987" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1987" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPLUGINSERVER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispluginserver.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1986" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1986" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" int m_count;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1986" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1986" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1986" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1987" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1987" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" PluginInfoList m_plugins;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1987" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1987" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1987" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1996" tqparent_class="1996" fileExt=".h" fileName="kistilecommand" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTILECOMMAND_H&amp;#010;#define KISTILECOMMAND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kispaintdevicesp.h&quot;&amp;#010;#include &quot;kistilesp.h&quot;&amp;#010;#include &quot;tilemap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1996" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTileCommand&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTileCommand ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2002" tag="operation_2002" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param device " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2005" tag="operation_2005" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param device &amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2012" tag="operation_2012" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param device &amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2016" tag="operation_2016" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileNo &amp;#010;@param tile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2019" tag="operation_2019" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2020" tag="operation_2020" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2021" tag="operation_2021" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2022" tag="operation_2022" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1997" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_device;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1998" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1999" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" TileMap m_originals;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2000" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2001" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" TileMap m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1997" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1997" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1998" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1998" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1999" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1999" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2000" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2000" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2001" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2001" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTILECOMMAND_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistilecommand.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:47:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1997" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1997" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" KisPaintDeviceSP m_device;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1997" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1997" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1997" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1998" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1998" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1998" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1998" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1998" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1999" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1999" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" TileMap m_originals;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1999" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1999" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1999" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2000" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2000" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QRect m_rc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2000" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2000" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2000" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2001" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2001" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" TileMap m_tiles;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2001" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2001" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2001" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2023" tqparent_class="2023" fileExt=".h" fileName="plugininfo" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef PLUGININFO_H&amp;#010;#define PLUGININFO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;plugintype.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2023" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class PluginInfo&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="PluginInfo ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2031" tag="operation_2031" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@param comment &amp;#010;@param dir &amp;#010;@param lib &amp;#010;@param category &amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2038" tag="operation_2038" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2039" tag="operation_2039" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2040" tag="operation_2040" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2041" tag="operation_2041" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2042" tag="operation_2042" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2043" tag="operation_2043" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2044" tag="operation_2044" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2046" tag="operation_2046" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2024" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_category;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2025" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_comment;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2026" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_dir;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2027" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" int m_id;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2028" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_library;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2029" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2030" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" PluginType m_type;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2024" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2024" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2025" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2025" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2026" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2026" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2027" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2027" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2028" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2028" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2029" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2029" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2030" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2030" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //PLUGININFO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; plugininfo.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2024" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2024" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_category;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2024" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2024" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2024" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2025" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2025" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_comment;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2025" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2025" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="2025" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2026" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2026" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_dir;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2026" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2026" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2026" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2027" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2027" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" int m_id;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2027" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2027" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2027" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2028" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2028" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_library;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2028" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2028" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2028" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2029" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2029" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2029" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2029" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2029" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2030" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2030" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" PluginType m_type;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2030" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2030" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2030" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2047" tqparent_class="2047" fileExt=".h" fileName="kisresource" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRESOURCE_H&amp;#010;#define KISRESOURCE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2047" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisResource&amp;#010;The KisResource class provides a representation of Chalk image resources. This&amp;#010;includes, but not limited to, brushes and patterns.&amp;#010;&amp;#010;This replaces the KisKrayon facility that used to be present in Krayon." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisResource ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2059" tag="operation_2059" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Creates a new KisResource object using @p filename. No file is opened&amp;#010;in the constructor, you have to call loadAsync.&amp;#010;&amp;#010;@param filename the file name to save and load from.&amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2061" tag="operation_2061" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2062" tag="operation_2062" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2063" tag="operation_2063" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2064" tag="operation_2064" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Returns a QImage representing this resource. This image could be null." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2065" tag="operation_2065" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Load this resource asynchronously. The signal loadComplete is emitted when&amp;#010;the resource has been loaded and valid flag is set to true." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2066" tag="operation_2066" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2067" tag="operation_2067" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Save this resource asynchronously. The signal saveComplete is emitted when&amp;#010;the resource has been saved." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2068" tag="operation_2068" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dirt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2070" tag="operation_2070" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2074" tag="operation_2074" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2076" tag="operation_2076" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param s " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2078" tag="operation_2078" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param valid " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2082" tag="operation_2082" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2083" tag="operation_2083" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2084" tag="operation_2084" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2085" tag="operation_2085" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Creates a new KisResource object using @p filename. No file is opened&amp;#010;in the constructor, you have to call loadAsync.&amp;#010;&amp;#010;@param filename the file name to save and load from." />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2055" tag="operation_2055" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2057" tag="operation_2057" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2072" tag="operation_2072" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2080" tag="operation_2080" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2048" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2049" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_filename;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2050" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2051" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2052" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_spacing;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2053" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2054" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2048" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2048" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2049" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2049" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2050" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2050" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2051" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2051" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2052" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2052" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2053" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2053" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2054" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2054" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRESOURCE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisresource.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2048" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2048" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_dirty;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2048" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2048" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2048" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2049" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2049" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_filename;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2049" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2049" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="2049" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2050" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2050" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_height;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2050" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2050" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="2050" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2051" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2051" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QString m_name;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2051" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2051" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2051" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2052" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2052" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_spacing;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2052" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2052" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2052" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2053" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2053" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2053" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2053" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2053" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2054" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2054" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_width;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2054" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2054" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2054" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2086" tqparent_class="2086" fileExt=".h" fileName="kisrenderinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRENDERINTERFACE_H&amp;#010;#define KISRENDERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2086" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisRenderInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisRenderInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2087" tag="operation_2087" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2089" tag="operation_2089" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2090" tag="operation_2090" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2092" tag="operation_2092" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2093" tag="operation_2093" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2095" tag="operation_2095" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2100" tag="operation_2100" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2102" tag="operation_2102" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xpix &amp;#010;@param ypix " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2105" tag="operation_2105" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2106" tag="operation_2106" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tileno " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2108" tag="operation_2108" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRENDERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisrenderinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2109" tqparent_class="2109" fileExt=".h" fileName="kispattern" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPATTERN_H&amp;#010;#define KISPATTERN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisresource.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2109" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisPattern&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisPattern ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2117" tag="operation_2117" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param file " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2119" tag="operation_2119" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2120" tag="operation_2120" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2121" tag="operation_2121" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2122" tag="operation_2122" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2123" tag="operation_2123" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2124" tag="operation_2124" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2125" tag="operation_2125" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2126" tag="operation_2126" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2110" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QByteArray m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2111" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2112" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2113" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap * m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2114" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap * m_thumbPixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2115" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2116" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_validThumb;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2110" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2110" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2111" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2111" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2112" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2112" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2113" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2113" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2114" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2114" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2115" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2115" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2116" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2116" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPATTERN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kispattern.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2110" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2110" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" QByteArray m_data;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2110" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2110" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2110" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2111" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2111" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_hotSpot;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2111" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2111" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="2111" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2112" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2112" tag="tblock_3" canDelete="false" indentLevel="1" role_id="-1" text=" QImage m_img;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2112" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2112" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="2112" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2113" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2113" tag="tblock_4" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap * m_pixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2113" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2113" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="2113" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2114" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2114" tag="tblock_5" canDelete="false" indentLevel="1" role_id="-1" text=" QPixmap * m_thumbPixmap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2114" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2114" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="2114" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2115" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2115" tag="tblock_6" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_valid;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2115" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2115" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="2115" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2116" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2116" tag="tblock_7" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_validThumb;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2116" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2116" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="2116" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2422" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2129" tqparent_class="2129" fileExt=".h" fileName="plugintype" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef PLUGINTYPE_H&amp;#010;#define PLUGINTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2129" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class PluginType&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="PluginType ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //PLUGINTYPE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; plugintype.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:18&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2135" tqparent_class="2135" fileExt=".h" fileName="kistool" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTOOL_H&amp;#010;#define KISTOOL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2135" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisTool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisTool ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2138" tag="operation_2138" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2141" tag="operation_2141" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2142" tag="operation_2142" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2144" tag="operation_2144" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2146" tag="operation_2146" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2148" tag="operation_2148" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2150" tag="operation_2150" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2152" tag="operation_2152" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2154" tag="operation_2154" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2156" tag="operation_2156" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2158" tag="operation_2158" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2160" tag="operation_2160" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2162" tag="operation_2162" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2164" tag="operation_2164" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gc &amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2167" tag="operation_2167" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param cursor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2169" tag="operation_2169" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param collection " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2171" tag="operation_2171" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2173" tag="operation_2173" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2136" tag="operation_2136" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2139" tag="operation_2139" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTOOL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistool.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2441" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2174" tqparent_class="2174" fileExt=".h" fileName="kisundoadapter" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISUNDOADAPTER_H&amp;#010;#define KISUNDOADAPTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2174" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisUndoAdapter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisUndoAdapter ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2177" tag="operation_2177" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2180" tag="operation_2180" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param cmd " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2182" tag="operation_2182" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param macroName " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2184" tag="operation_2184" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2185" tag="operation_2185" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2186" tag="operation_2186" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param undo " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2188" tag="operation_2188" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2189" tag="operation_2189" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2175" tag="operation_2175" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2178" tag="operation_2178" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISUNDOADAPTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisundoadapter.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2366" field_type="3" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisView ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2190" tqparent_class="2190" fileExt=".h" fileName="kistoolfactory" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTOOLFACTORY_H&amp;#010;#define KISTOOLFACTORY_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;vkistool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2190" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisToolFactory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2191" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisToolFactory m_singleton;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisToolFactory ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2195" tag="operation_2195" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2198" tag="operation_2198" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param actionCollection &amp;#010;@param subject " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2201" tag="operation_2201" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2202" tag="operation_2202" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2193" tag="operation_2193" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2196" tag="operation_2196" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2192" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" vKisTool m_tools;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2192" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2192" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTOOLFACTORY_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistoolfactory.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2192" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2192" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" vKisTool m_tools;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2192" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2192" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="2192" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2191" field_type="1" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2191" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisToolFactory m_singleton;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2191" field_type="1" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2191" tag="tblock_1" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text=" KisToolFactory ;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2191" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2191" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2191" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2191" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2191" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2191" role_id="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2203" tqparent_class="2203" fileExt=".h" fileName="kistoolcontrollerinterface" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISTOOLCONTROLLERINTERFACE_H&amp;#010;#define KISTOOLCONTROLLERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2203" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisToolControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisToolControllerInterface ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2206" tag="operation_2206" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2209" tag="operation_2209" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2210" tag="operation_2210" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tool " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2212" tag="operation_2212" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2204" tag="operation_2204" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2207" tag="operation_2207" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISTOOLCONTROLLERINTERFACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kistoolcontrollerinterface.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2218" tqparent_class="2218" fileExt=".h" fileName="kisutil" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISUTIL_H&amp;#010;#define KISUTIL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;int.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2218" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisUtil&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisUtil ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2219" tag="operation_2219" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@param p " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2222" tag="operation_2222" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param area " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2224" tag="operation_2224" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2226" tag="operation_2226" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2229" tag="operation_2229" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2232" tag="operation_2232" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param width &amp;#010;@param height " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISUTIL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisutil.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2236" tqparent_class="2236" fileExt=".h" fileName="kisvector" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISVECTOR_H&amp;#010;#define KISVECTOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;int.h&quot;&amp;#010;#include &quot;long.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2236" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisVector&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisVector ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2240" tag="operation_2240" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2243" tag="operation_2243" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2246" tag="operation_2246" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2249" tag="operation_2249" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2252" tag="operation_2252" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2255" tag="operation_2255" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2258" tag="operation_2258" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2261" tag="operation_2261" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2263" tag="operation_2263" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2265" tag="operation_2265" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2267" tag="operation_2267" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2270" tag="operation_2270" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2272" tag="operation_2272" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2274" tag="operation_2274" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2277" tag="operation_2277" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2279" tag="operation_2279" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2282" tag="operation_2282" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2285" tag="operation_2285" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2288" tag="operation_2288" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2290" tag="operation_2290" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2292" tag="operation_2292" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2294" tag="operation_2294" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2297" tag="operation_2297" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2298" tag="operation_2298" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param z " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2302" tag="operation_2302" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param z " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2306" tag="operation_2306" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param z " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2310" tag="operation_2310" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2312" tag="operation_2312" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2314" tag="operation_2314" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2315" tag="operation_2315" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2316" tag="operation_2316" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2317" tag="operation_2317" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2319" tag="operation_2319" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2321" tag="operation_2321" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2323" tag="operation_2323" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2324" tag="operation_2324" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2325" tag="operation_2325" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2237" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" double m_x;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2238" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" double m_y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2239" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" double m_z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2237" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2237" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2238" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2238" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2239" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2239" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISVECTOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisvector.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2237" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2237" tag="tblock_0" canDelete="false" indentLevel="1" role_id="-1" text=" double m_x;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2237" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2237" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="2237" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2238" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2238" tag="tblock_1" canDelete="false" indentLevel="1" role_id="-1" text=" double m_y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2238" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2238" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="2238" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2239" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2239" tag="tblock_2" canDelete="false" indentLevel="1" role_id="-1" text=" double m_z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2239" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2239" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="2239" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader2365" tqparent_class="2365" fileExt=".h" fileName="kisview" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISVIEW_H&amp;#010;#define KISVIEW_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;kisimagesp.h&quot;&amp;#010;#include &quot;double.h&quot;&amp;#010;#include &quot;kisguidesp.h&quot;&amp;#010;#include &quot;vkiscanvasobserver.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="2365" tag="classDeclarationBlock" canDelete="false" role_id="-1" >
+ <header>
+ <cppcodecomment tag="" text="Class KisView&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisUndoAdapter m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisBrush m_brush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="tblock_2" canDelete="false" indentLevel="1" role_id="0" text=" KisResourceMediator m_brushMediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="tblock_3" canDelete="false" indentLevel="1" role_id="0" text=" KisDoc m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="tblock_4" canDelete="false" indentLevel="1" role_id="0" text=" KisGradient m_gradient;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="tblock_5" canDelete="false" indentLevel="1" role_id="0" text=" KisBuilderMonitor m_imgBuilderMgr;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="tblock_6" canDelete="false" indentLevel="1" role_id="0" text=" KisPattern m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="tblock_7" canDelete="false" indentLevel="1" role_id="0" text=" KisResourceMediator m_patternMediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="tblock_8" canDelete="false" indentLevel="1" role_id="0" text=" KisTool m_tool;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisView ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_83" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_84" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_85" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_86" canDelete="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_88" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_89" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_90" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_92" canDelete="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_93" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_94" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_95" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_98" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_99" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_100" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_101" canDelete="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_102" canDelete="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_103" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_104" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_105" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_106" canDelete="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_107" canDelete="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_108" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_109" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_110" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_111" canDelete="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_112" canDelete="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_113" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_114" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_115" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_116" canDelete="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_117" canDelete="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_118" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_119" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_120" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_121" canDelete="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_122" canDelete="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_123" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_124" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_125" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2448" tag="operation_2448" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param doc &amp;#010;@param adapter &amp;#010;@param tqparent &amp;#010;@param name " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2458" tag="operation_2458" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2459" tag="operation_2459" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2469" tag="operation_2469" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2473" tag="operation_2473" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2474" tag="operation_2474" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2477" tag="operation_2477" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param o &amp;#010;@param e " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2484" tag="operation_2484" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param event " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2488" tag="operation_2488" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param createLayer &amp;#010;@param modal &amp;#010;@param filename " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2498" tag="operation_2498" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param printer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2517" tag="operation_2517" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param printer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2536" tag="operation_2536" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param readwrite " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2566" tag="operation_2566" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="2453" tag="operation_2453" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2455" tag="operation_2455" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2456" tag="operation_2456" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2457" tag="operation_2457" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2460" tag="operation_2460" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2462" tag="operation_2462" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2463" tag="operation_2463" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2464" tag="operation_2464" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2465" tag="operation_2465" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2466" tag="operation_2466" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2467" tag="operation_2467" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2468" tag="operation_2468" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2470" tag="operation_2470" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2472" tag="operation_2472" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2475" tag="operation_2475" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2476" tag="operation_2476" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2480" tag="operation_2480" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2481" tag="operation_2481" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2486" tag="operation_2486" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2487" tag="operation_2487" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2492" tag="operation_2492" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param enable " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2494" tag="operation_2494" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2495" tag="operation_2495" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2496" tag="operation_2496" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2500" tag="operation_2500" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2502" tag="operation_2502" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param result " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2504" tag="operation_2504" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2506" tag="operation_2506" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param enable " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2508" tag="operation_2508" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2510" tag="operation_2510" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tool " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2512" tag="operation_2512" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2514" tag="operation_2514" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2515" tag="operation_2515" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2516" tag="operation_2516" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2519" tag="operation_2519" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2520" tag="operation_2520" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2521" tag="operation_2521" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2522" tag="operation_2522" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2523" tag="operation_2523" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2524" tag="operation_2524" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2525" tag="operation_2525" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2526" tag="operation_2526" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2527" tag="operation_2527" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2528" tag="operation_2528" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2533" tag="operation_2533" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2535" tag="operation_2535" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2538" tag="operation_2538" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2539" tag="operation_2539" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2542" tag="operation_2542" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2544" tag="operation_2544" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2546" tag="operation_2546" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2549" tag="operation_2549" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2551" tag="operation_2551" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2553" tag="operation_2553" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2554" tag="operation_2554" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2555" tag="operation_2555" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2558" tag="operation_2558" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2559" tag="operation_2559" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="2562" tag="operation_2562" canDelete="false" indentLevel="1" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param zf " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="2367" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_bg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2370" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" KisLabelBuilderProgress * m_buildProgress;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2371" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvas * m_canvas;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2372" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelView * m_channelView;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2373" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_clipboardHasImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2374" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" mutable KisImageSP m_current;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2375" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisGuideSP m_currentGuide;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2376" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" DCOPObject * m_dcop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2377" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgBrushToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2378" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgChannelsToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2379" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgColorsToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2380" tag="tblock_20" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgLayersToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2381" tag="tblock_21" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgPatternToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2383" tag="tblock_22" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_fg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2384" tag="tblock_23" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_floatsidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2386" tag="tblock_24" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_gradientChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2387" tag="tblock_25" canDelete="false" indentLevel="1" role_id="-1" text=" KisRuler * m_hRuler;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2388" tag="tblock_26" canDelete="false" indentLevel="1" role_id="-1" text=" QScrollBar * m_hScroll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2389" tag="tblock_27" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_imageChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2391" tag="tblock_28" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgDup;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2392" tag="tblock_29" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgExport;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2393" tag="tblock_30" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgImport;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2394" tag="tblock_31" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeAll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2395" tag="tblock_32" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeLinked;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2396" tag="tblock_33" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeVisible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2397" tag="tblock_34" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgResize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2398" tag="tblock_35" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgResizeToLayer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2399" tag="tblock_36" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2400" tag="tblock_37" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgScan;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2401" tag="tblock_38" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_lastGuidePoint;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2402" tag="tblock_39" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerAdd;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2403" tag="tblock_40" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerBottom;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2404" tag="tblock_41" canDelete="false" indentLevel="1" role_id="-1" text=" KisListBox * m_layerBox;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2405" tag="tblock_42" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerDup;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2406" tag="tblock_43" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerHide;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2407" tag="tblock_44" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerLink;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2408" tag="tblock_45" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerLower;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2409" tag="tblock_46" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerProperties;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2410" tag="tblock_47" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerRaise;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2411" tag="tblock_48" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerResize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2412" tag="tblock_49" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerResizeToImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2413" tag="tblock_50" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2414" tag="tblock_51" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerSaveAs;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2415" tag="tblock_52" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerScale;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2416" tag="tblock_53" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerToImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2417" tag="tblock_54" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerTop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2418" tag="tblock_55" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_lsidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2419" tag="tblock_56" canDelete="false" indentLevel="1" role_id="-1" text=" vKisCanvasObserver m_observers;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2420" tag="tblock_57" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_paletteChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2421" tag="tblock_58" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_pathView;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2424" tag="tblock_59" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCopy;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2425" tag="tblock_60" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCrop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2426" tag="tblock_61" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCut;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2427" tag="tblock_62" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionFillBg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2428" tag="tblock_63" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionFillFg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2429" tag="tblock_64" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionPaste;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2430" tag="tblock_65" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionPasteInto;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2431" tag="tblock_66" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2432" tag="tblock_67" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionSelectAll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2433" tag="tblock_68" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionSelectNone;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2434" tag="tblock_69" canDelete="false" indentLevel="1" role_id="-1" text=" KisSideBar * m_sideBar;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2435" tag="tblock_70" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_sidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2436" tag="tblock_71" canDelete="false" indentLevel="1" role_id="-1" text=" KoTabBar * m_tabBar;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2437" tag="tblock_72" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabFirst;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2438" tag="tblock_73" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabLast;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2439" tag="tblock_74" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabLeft;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2440" tag="tblock_75" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabRight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2442" tag="tblock_76" canDelete="false" indentLevel="1" role_id="-1" text=" KisRuler * m_vRuler;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2443" tag="tblock_77" canDelete="false" indentLevel="1" role_id="-1" text=" QScrollBar * m_vScroll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2444" tag="tblock_78" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_xoff;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2445" tag="tblock_79" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_yoff;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2446" tag="tblock_80" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_zoomIn;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="2447" tag="tblock_81" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_zoomOut;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="2367" tag="hblock_tag_126" canDelete="false" indentLevel="1" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2367" tag="hblock_tag_127" canDelete="false" indentLevel="1" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2370" tag="hblock_tag_128" canDelete="false" indentLevel="1" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2370" tag="hblock_tag_129" canDelete="false" indentLevel="1" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2371" tag="hblock_tag_130" canDelete="false" indentLevel="1" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2371" tag="hblock_tag_131" canDelete="false" indentLevel="1" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2372" tag="hblock_tag_132" canDelete="false" indentLevel="1" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2372" tag="hblock_tag_133" canDelete="false" indentLevel="1" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2373" tag="hblock_tag_134" canDelete="false" indentLevel="1" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2373" tag="hblock_tag_135" canDelete="false" indentLevel="1" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2374" tag="hblock_tag_136" canDelete="false" indentLevel="1" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2374" tag="hblock_tag_137" canDelete="false" indentLevel="1" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2375" tag="hblock_tag_138" canDelete="false" indentLevel="1" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2375" tag="hblock_tag_139" canDelete="false" indentLevel="1" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2376" tag="hblock_tag_140" canDelete="false" indentLevel="1" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2376" tag="hblock_tag_141" canDelete="false" indentLevel="1" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2377" tag="hblock_tag_142" canDelete="false" indentLevel="1" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2377" tag="hblock_tag_143" canDelete="false" indentLevel="1" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2378" tag="hblock_tag_144" canDelete="false" indentLevel="1" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2378" tag="hblock_tag_145" canDelete="false" indentLevel="1" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2379" tag="hblock_tag_146" canDelete="false" indentLevel="1" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2379" tag="hblock_tag_147" canDelete="false" indentLevel="1" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2380" tag="hblock_tag_148" canDelete="false" indentLevel="1" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2380" tag="hblock_tag_149" canDelete="false" indentLevel="1" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2381" tag="hblock_tag_150" canDelete="false" indentLevel="1" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2381" tag="hblock_tag_151" canDelete="false" indentLevel="1" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2383" tag="hblock_tag_152" canDelete="false" indentLevel="1" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2383" tag="hblock_tag_153" canDelete="false" indentLevel="1" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2384" tag="hblock_tag_154" canDelete="false" indentLevel="1" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2384" tag="hblock_tag_155" canDelete="false" indentLevel="1" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2386" tag="hblock_tag_156" canDelete="false" indentLevel="1" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2386" tag="hblock_tag_157" canDelete="false" indentLevel="1" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2387" tag="hblock_tag_158" canDelete="false" indentLevel="1" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2387" tag="hblock_tag_159" canDelete="false" indentLevel="1" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2388" tag="hblock_tag_160" canDelete="false" indentLevel="1" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2388" tag="hblock_tag_161" canDelete="false" indentLevel="1" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2389" tag="hblock_tag_162" canDelete="false" indentLevel="1" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2389" tag="hblock_tag_163" canDelete="false" indentLevel="1" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2391" tag="hblock_tag_164" canDelete="false" indentLevel="1" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2391" tag="hblock_tag_165" canDelete="false" indentLevel="1" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2392" tag="hblock_tag_166" canDelete="false" indentLevel="1" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2392" tag="hblock_tag_167" canDelete="false" indentLevel="1" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2393" tag="hblock_tag_168" canDelete="false" indentLevel="1" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2393" tag="hblock_tag_169" canDelete="false" indentLevel="1" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2394" tag="hblock_tag_170" canDelete="false" indentLevel="1" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2394" tag="hblock_tag_171" canDelete="false" indentLevel="1" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2395" tag="hblock_tag_172" canDelete="false" indentLevel="1" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2395" tag="hblock_tag_173" canDelete="false" indentLevel="1" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2396" tag="hblock_tag_174" canDelete="false" indentLevel="1" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2396" tag="hblock_tag_175" canDelete="false" indentLevel="1" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2397" tag="hblock_tag_176" canDelete="false" indentLevel="1" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2397" tag="hblock_tag_177" canDelete="false" indentLevel="1" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2398" tag="hblock_tag_178" canDelete="false" indentLevel="1" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2398" tag="hblock_tag_179" canDelete="false" indentLevel="1" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2399" tag="hblock_tag_180" canDelete="false" indentLevel="1" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2399" tag="hblock_tag_181" canDelete="false" indentLevel="1" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2400" tag="hblock_tag_182" canDelete="false" indentLevel="1" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2400" tag="hblock_tag_183" canDelete="false" indentLevel="1" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2401" tag="hblock_tag_184" canDelete="false" indentLevel="1" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2401" tag="hblock_tag_185" canDelete="false" indentLevel="1" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2402" tag="hblock_tag_186" canDelete="false" indentLevel="1" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2402" tag="hblock_tag_187" canDelete="false" indentLevel="1" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2403" tag="hblock_tag_188" canDelete="false" indentLevel="1" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2403" tag="hblock_tag_189" canDelete="false" indentLevel="1" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2404" tag="hblock_tag_190" canDelete="false" indentLevel="1" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2404" tag="hblock_tag_191" canDelete="false" indentLevel="1" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2405" tag="hblock_tag_192" canDelete="false" indentLevel="1" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2405" tag="hblock_tag_193" canDelete="false" indentLevel="1" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2406" tag="hblock_tag_194" canDelete="false" indentLevel="1" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2406" tag="hblock_tag_195" canDelete="false" indentLevel="1" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2407" tag="hblock_tag_196" canDelete="false" indentLevel="1" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2407" tag="hblock_tag_197" canDelete="false" indentLevel="1" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2408" tag="hblock_tag_198" canDelete="false" indentLevel="1" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2408" tag="hblock_tag_199" canDelete="false" indentLevel="1" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2409" tag="hblock_tag_200" canDelete="false" indentLevel="1" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2409" tag="hblock_tag_201" canDelete="false" indentLevel="1" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2410" tag="hblock_tag_202" canDelete="false" indentLevel="1" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2410" tag="hblock_tag_203" canDelete="false" indentLevel="1" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2411" tag="hblock_tag_204" canDelete="false" indentLevel="1" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2411" tag="hblock_tag_205" canDelete="false" indentLevel="1" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2412" tag="hblock_tag_206" canDelete="false" indentLevel="1" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2412" tag="hblock_tag_207" canDelete="false" indentLevel="1" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2413" tag="hblock_tag_208" canDelete="false" indentLevel="1" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2413" tag="hblock_tag_209" canDelete="false" indentLevel="1" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2414" tag="hblock_tag_210" canDelete="false" indentLevel="1" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2414" tag="hblock_tag_211" canDelete="false" indentLevel="1" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2415" tag="hblock_tag_212" canDelete="false" indentLevel="1" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2415" tag="hblock_tag_213" canDelete="false" indentLevel="1" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2416" tag="hblock_tag_214" canDelete="false" indentLevel="1" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2416" tag="hblock_tag_215" canDelete="false" indentLevel="1" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2417" tag="hblock_tag_216" canDelete="false" indentLevel="1" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2417" tag="hblock_tag_217" canDelete="false" indentLevel="1" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2418" tag="hblock_tag_218" canDelete="false" indentLevel="1" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2418" tag="hblock_tag_219" canDelete="false" indentLevel="1" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2419" tag="hblock_tag_220" canDelete="false" indentLevel="1" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2419" tag="hblock_tag_221" canDelete="false" indentLevel="1" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2420" tag="hblock_tag_222" canDelete="false" indentLevel="1" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2420" tag="hblock_tag_223" canDelete="false" indentLevel="1" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2421" tag="hblock_tag_224" canDelete="false" indentLevel="1" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2421" tag="hblock_tag_225" canDelete="false" indentLevel="1" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2424" tag="hblock_tag_226" canDelete="false" indentLevel="1" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2424" tag="hblock_tag_227" canDelete="false" indentLevel="1" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2425" tag="hblock_tag_228" canDelete="false" indentLevel="1" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2425" tag="hblock_tag_229" canDelete="false" indentLevel="1" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2426" tag="hblock_tag_230" canDelete="false" indentLevel="1" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2426" tag="hblock_tag_231" canDelete="false" indentLevel="1" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2427" tag="hblock_tag_232" canDelete="false" indentLevel="1" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2427" tag="hblock_tag_233" canDelete="false" indentLevel="1" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2428" tag="hblock_tag_234" canDelete="false" indentLevel="1" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2428" tag="hblock_tag_235" canDelete="false" indentLevel="1" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2429" tag="hblock_tag_236" canDelete="false" indentLevel="1" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2429" tag="hblock_tag_237" canDelete="false" indentLevel="1" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2430" tag="hblock_tag_238" canDelete="false" indentLevel="1" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2430" tag="hblock_tag_239" canDelete="false" indentLevel="1" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2431" tag="hblock_tag_240" canDelete="false" indentLevel="1" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2431" tag="hblock_tag_241" canDelete="false" indentLevel="1" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2432" tag="hblock_tag_242" canDelete="false" indentLevel="1" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2432" tag="hblock_tag_243" canDelete="false" indentLevel="1" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2433" tag="hblock_tag_244" canDelete="false" indentLevel="1" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2433" tag="hblock_tag_245" canDelete="false" indentLevel="1" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2434" tag="hblock_tag_246" canDelete="false" indentLevel="1" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2434" tag="hblock_tag_247" canDelete="false" indentLevel="1" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2435" tag="hblock_tag_248" canDelete="false" indentLevel="1" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2435" tag="hblock_tag_249" canDelete="false" indentLevel="1" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2436" tag="hblock_tag_250" canDelete="false" indentLevel="1" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2436" tag="hblock_tag_251" canDelete="false" indentLevel="1" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2437" tag="hblock_tag_252" canDelete="false" indentLevel="1" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2437" tag="hblock_tag_253" canDelete="false" indentLevel="1" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2438" tag="hblock_tag_254" canDelete="false" indentLevel="1" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2438" tag="hblock_tag_255" canDelete="false" indentLevel="1" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2439" tag="hblock_tag_256" canDelete="false" indentLevel="1" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2439" tag="hblock_tag_257" canDelete="false" indentLevel="1" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2440" tag="hblock_tag_258" canDelete="false" indentLevel="1" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2440" tag="hblock_tag_259" canDelete="false" indentLevel="1" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2442" tag="hblock_tag_260" canDelete="false" indentLevel="1" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2442" tag="hblock_tag_261" canDelete="false" indentLevel="1" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2443" tag="hblock_tag_262" canDelete="false" indentLevel="1" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2443" tag="hblock_tag_263" canDelete="false" indentLevel="1" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2444" tag="hblock_tag_264" canDelete="false" indentLevel="1" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2444" tag="hblock_tag_265" canDelete="false" indentLevel="1" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2445" tag="hblock_tag_266" canDelete="false" indentLevel="1" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2445" tag="hblock_tag_267" canDelete="false" indentLevel="1" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2446" tag="hblock_tag_268" canDelete="false" indentLevel="1" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2446" tag="hblock_tag_269" canDelete="false" indentLevel="1" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="2447" tag="hblock_tag_270" canDelete="false" indentLevel="1" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2447" tag="hblock_tag_271" canDelete="false" indentLevel="1" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISVIEW_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" text="/************************************************************************&amp;#010; kisview.h - Copyright boud&amp;#010;&amp;#010;Here you can write a license for your code, some comments or any other&amp;#010;information you want to have in your generated code. To to this simply&amp;#010;configure the &quot;headings&quot; directory in uml to point to a directory&amp;#010;where you have your heading files.&amp;#010;&amp;#010;or you can just replace the contents of this file with your own.&amp;#010;If you want to do this, this file is located at&amp;#010;&amp;#010;/opt/kde3/share/apps/umbrello/headings/heading.h&amp;#010;&amp;#010;-->Code Generators searches for heading files based on the file extension&amp;#010; i.e. it will look for a file name ending in &quot;.h&quot; to include in C++ header&amp;#010; files, and for a file name ending in &quot;.java&quot; to include in all generated&amp;#010; java code.&amp;#010; If you name the file &quot;heading.&lt;extension>&quot;, Code Generator will always&amp;#010; choose this file even if there are other files with the same extension in the&amp;#010; directory. If you name the file something else, it must be the only one with that&amp;#010; extension in the directory to guarantee that Code Generator will choose it.&amp;#010;&amp;#010;you can use variables in your heading files which are replaced at generation&amp;#010;time. possible variables are : author, date, time, filename and filepath.&amp;#010;just write %variable_name%&amp;#010;&amp;#010;This file was generated on Sun Feb 8 2004 at 16:45:19&amp;#010;The original location of this file is &amp;#010;**************************************************************************/&amp;#010;" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="2367" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2367" tag="tblock_9" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_bg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2367" tag="hblock_tag_126" canDelete="false" indentLevel="1" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2367" tag="hblock_tag_127" canDelete="false" indentLevel="1" classfield_id="2367" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2370" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2370" tag="tblock_10" canDelete="false" indentLevel="1" role_id="-1" text=" KisLabelBuilderProgress * m_buildProgress;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2370" tag="hblock_tag_128" canDelete="false" indentLevel="1" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2370" tag="hblock_tag_129" canDelete="false" indentLevel="1" classfield_id="2370" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2371" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2371" tag="tblock_11" canDelete="false" indentLevel="1" role_id="-1" text=" KisCanvas * m_canvas;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2371" tag="hblock_tag_130" canDelete="false" indentLevel="1" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2371" tag="hblock_tag_131" canDelete="false" indentLevel="1" classfield_id="2371" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2372" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2372" tag="tblock_12" canDelete="false" indentLevel="1" role_id="-1" text=" KisChannelView * m_channelView;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2372" tag="hblock_tag_132" canDelete="false" indentLevel="1" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2372" tag="hblock_tag_133" canDelete="false" indentLevel="1" classfield_id="2372" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2373" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2373" tag="tblock_13" canDelete="false" indentLevel="1" role_id="-1" text=" bool m_clipboardHasImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2373" tag="hblock_tag_134" canDelete="false" indentLevel="1" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2373" tag="hblock_tag_135" canDelete="false" indentLevel="1" classfield_id="2373" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2374" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2374" tag="tblock_14" canDelete="false" indentLevel="1" role_id="-1" text=" mutable KisImageSP m_current;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2374" tag="hblock_tag_136" canDelete="false" indentLevel="1" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2374" tag="hblock_tag_137" canDelete="false" indentLevel="1" classfield_id="2374" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2375" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2375" tag="tblock_15" canDelete="false" indentLevel="1" role_id="-1" text=" KisGuideSP m_currentGuide;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2375" tag="hblock_tag_138" canDelete="false" indentLevel="1" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2375" tag="hblock_tag_139" canDelete="false" indentLevel="1" classfield_id="2375" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2376" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2376" tag="tblock_16" canDelete="false" indentLevel="1" role_id="-1" text=" DCOPObject * m_dcop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2376" tag="hblock_tag_140" canDelete="false" indentLevel="1" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2376" tag="hblock_tag_141" canDelete="false" indentLevel="1" classfield_id="2376" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2377" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2377" tag="tblock_17" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgBrushToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2377" tag="hblock_tag_142" canDelete="false" indentLevel="1" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2377" tag="hblock_tag_143" canDelete="false" indentLevel="1" classfield_id="2377" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2378" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2378" tag="tblock_18" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgChannelsToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2378" tag="hblock_tag_144" canDelete="false" indentLevel="1" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2378" tag="hblock_tag_145" canDelete="false" indentLevel="1" classfield_id="2378" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2379" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2379" tag="tblock_19" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgColorsToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2379" tag="hblock_tag_146" canDelete="false" indentLevel="1" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2379" tag="hblock_tag_147" canDelete="false" indentLevel="1" classfield_id="2379" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2380" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2380" tag="tblock_20" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgLayersToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2380" tag="hblock_tag_148" canDelete="false" indentLevel="1" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2380" tag="hblock_tag_149" canDelete="false" indentLevel="1" classfield_id="2380" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2381" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2381" tag="tblock_21" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_dlgPatternToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2381" tag="hblock_tag_150" canDelete="false" indentLevel="1" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2381" tag="hblock_tag_151" canDelete="false" indentLevel="1" classfield_id="2381" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2383" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2383" tag="tblock_22" canDelete="false" indentLevel="1" role_id="-1" text=" KoColor m_fg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2383" tag="hblock_tag_152" canDelete="false" indentLevel="1" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2383" tag="hblock_tag_153" canDelete="false" indentLevel="1" classfield_id="2383" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2384" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2384" tag="tblock_23" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_floatsidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2384" tag="hblock_tag_154" canDelete="false" indentLevel="1" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2384" tag="hblock_tag_155" canDelete="false" indentLevel="1" classfield_id="2384" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2386" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2386" tag="tblock_24" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_gradientChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2386" tag="hblock_tag_156" canDelete="false" indentLevel="1" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2386" tag="hblock_tag_157" canDelete="false" indentLevel="1" classfield_id="2386" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2387" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2387" tag="tblock_25" canDelete="false" indentLevel="1" role_id="-1" text=" KisRuler * m_hRuler;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2387" tag="hblock_tag_158" canDelete="false" indentLevel="1" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2387" tag="hblock_tag_159" canDelete="false" indentLevel="1" classfield_id="2387" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2388" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2388" tag="tblock_26" canDelete="false" indentLevel="1" role_id="-1" text=" QScrollBar * m_hScroll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2388" tag="hblock_tag_160" canDelete="false" indentLevel="1" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2388" tag="hblock_tag_161" canDelete="false" indentLevel="1" classfield_id="2388" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2389" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2389" tag="tblock_27" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_imageChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2389" tag="hblock_tag_162" canDelete="false" indentLevel="1" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2389" tag="hblock_tag_163" canDelete="false" indentLevel="1" classfield_id="2389" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2391" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2391" tag="tblock_28" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgDup;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2391" tag="hblock_tag_164" canDelete="false" indentLevel="1" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2391" tag="hblock_tag_165" canDelete="false" indentLevel="1" classfield_id="2391" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2392" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2392" tag="tblock_29" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgExport;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2392" tag="hblock_tag_166" canDelete="false" indentLevel="1" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2392" tag="hblock_tag_167" canDelete="false" indentLevel="1" classfield_id="2392" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2393" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2393" tag="tblock_30" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgImport;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2393" tag="hblock_tag_168" canDelete="false" indentLevel="1" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2393" tag="hblock_tag_169" canDelete="false" indentLevel="1" classfield_id="2393" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2394" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2394" tag="tblock_31" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeAll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2394" tag="hblock_tag_170" canDelete="false" indentLevel="1" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2394" tag="hblock_tag_171" canDelete="false" indentLevel="1" classfield_id="2394" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2395" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2395" tag="tblock_32" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeLinked;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2395" tag="hblock_tag_172" canDelete="false" indentLevel="1" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2395" tag="hblock_tag_173" canDelete="false" indentLevel="1" classfield_id="2395" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2396" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2396" tag="tblock_33" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgMergeVisible;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2396" tag="hblock_tag_174" canDelete="false" indentLevel="1" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2396" tag="hblock_tag_175" canDelete="false" indentLevel="1" classfield_id="2396" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2397" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2397" tag="tblock_34" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgResize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2397" tag="hblock_tag_176" canDelete="false" indentLevel="1" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2397" tag="hblock_tag_177" canDelete="false" indentLevel="1" classfield_id="2397" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2398" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2398" tag="tblock_35" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgResizeToLayer;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2398" tag="hblock_tag_178" canDelete="false" indentLevel="1" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2398" tag="hblock_tag_179" canDelete="false" indentLevel="1" classfield_id="2398" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2399" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2399" tag="tblock_36" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2399" tag="hblock_tag_180" canDelete="false" indentLevel="1" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2399" tag="hblock_tag_181" canDelete="false" indentLevel="1" classfield_id="2399" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2400" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2400" tag="tblock_37" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_imgScan;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2400" tag="hblock_tag_182" canDelete="false" indentLevel="1" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2400" tag="hblock_tag_183" canDelete="false" indentLevel="1" classfield_id="2400" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2401" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2401" tag="tblock_38" canDelete="false" indentLevel="1" role_id="-1" text=" QPoint m_lastGuidePoint;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2401" tag="hblock_tag_184" canDelete="false" indentLevel="1" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2401" tag="hblock_tag_185" canDelete="false" indentLevel="1" classfield_id="2401" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2402" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2402" tag="tblock_39" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerAdd;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2402" tag="hblock_tag_186" canDelete="false" indentLevel="1" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2402" tag="hblock_tag_187" canDelete="false" indentLevel="1" classfield_id="2402" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2403" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2403" tag="tblock_40" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerBottom;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2403" tag="hblock_tag_188" canDelete="false" indentLevel="1" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2403" tag="hblock_tag_189" canDelete="false" indentLevel="1" classfield_id="2403" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2404" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2404" tag="tblock_41" canDelete="false" indentLevel="1" role_id="-1" text=" KisListBox * m_layerBox;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2404" tag="hblock_tag_190" canDelete="false" indentLevel="1" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2404" tag="hblock_tag_191" canDelete="false" indentLevel="1" classfield_id="2404" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2405" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2405" tag="tblock_42" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerDup;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2405" tag="hblock_tag_192" canDelete="false" indentLevel="1" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2405" tag="hblock_tag_193" canDelete="false" indentLevel="1" classfield_id="2405" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2406" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2406" tag="tblock_43" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerHide;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2406" tag="hblock_tag_194" canDelete="false" indentLevel="1" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2406" tag="hblock_tag_195" canDelete="false" indentLevel="1" classfield_id="2406" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2407" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2407" tag="tblock_44" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerLink;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2407" tag="hblock_tag_196" canDelete="false" indentLevel="1" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2407" tag="hblock_tag_197" canDelete="false" indentLevel="1" classfield_id="2407" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2408" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2408" tag="tblock_45" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerLower;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2408" tag="hblock_tag_198" canDelete="false" indentLevel="1" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2408" tag="hblock_tag_199" canDelete="false" indentLevel="1" classfield_id="2408" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2409" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2409" tag="tblock_46" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerProperties;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2409" tag="hblock_tag_200" canDelete="false" indentLevel="1" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2409" tag="hblock_tag_201" canDelete="false" indentLevel="1" classfield_id="2409" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2410" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2410" tag="tblock_47" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerRaise;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2410" tag="hblock_tag_202" canDelete="false" indentLevel="1" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2410" tag="hblock_tag_203" canDelete="false" indentLevel="1" classfield_id="2410" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2411" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2411" tag="tblock_48" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerResize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2411" tag="hblock_tag_204" canDelete="false" indentLevel="1" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2411" tag="hblock_tag_205" canDelete="false" indentLevel="1" classfield_id="2411" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2412" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2412" tag="tblock_49" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerResizeToImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2412" tag="hblock_tag_206" canDelete="false" indentLevel="1" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2412" tag="hblock_tag_207" canDelete="false" indentLevel="1" classfield_id="2412" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2413" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2413" tag="tblock_50" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2413" tag="hblock_tag_208" canDelete="false" indentLevel="1" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2413" tag="hblock_tag_209" canDelete="false" indentLevel="1" classfield_id="2413" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2414" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2414" tag="tblock_51" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerSaveAs;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2414" tag="hblock_tag_210" canDelete="false" indentLevel="1" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2414" tag="hblock_tag_211" canDelete="false" indentLevel="1" classfield_id="2414" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2415" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2415" tag="tblock_52" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerScale;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2415" tag="hblock_tag_212" canDelete="false" indentLevel="1" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2415" tag="hblock_tag_213" canDelete="false" indentLevel="1" classfield_id="2415" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2416" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2416" tag="tblock_53" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerToImage;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2416" tag="hblock_tag_214" canDelete="false" indentLevel="1" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2416" tag="hblock_tag_215" canDelete="false" indentLevel="1" classfield_id="2416" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2417" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2417" tag="tblock_54" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_layerTop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2417" tag="hblock_tag_216" canDelete="false" indentLevel="1" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2417" tag="hblock_tag_217" canDelete="false" indentLevel="1" classfield_id="2417" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2418" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2418" tag="tblock_55" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_lsidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2418" tag="hblock_tag_218" canDelete="false" indentLevel="1" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2418" tag="hblock_tag_219" canDelete="false" indentLevel="1" classfield_id="2418" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2419" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2419" tag="tblock_56" canDelete="false" indentLevel="1" role_id="-1" text=" vKisCanvasObserver m_observers;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2419" tag="hblock_tag_220" canDelete="false" indentLevel="1" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2419" tag="hblock_tag_221" canDelete="false" indentLevel="1" classfield_id="2419" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2420" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2420" tag="tblock_57" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_paletteChooser;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2420" tag="hblock_tag_222" canDelete="false" indentLevel="1" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2420" tag="hblock_tag_223" canDelete="false" indentLevel="1" classfield_id="2420" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2421" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2421" tag="tblock_58" canDelete="false" indentLevel="1" role_id="-1" text=" QWidget * m_pathView;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2421" tag="hblock_tag_224" canDelete="false" indentLevel="1" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2421" tag="hblock_tag_225" canDelete="false" indentLevel="1" classfield_id="2421" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2424" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2424" tag="tblock_59" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCopy;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2424" tag="hblock_tag_226" canDelete="false" indentLevel="1" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2424" tag="hblock_tag_227" canDelete="false" indentLevel="1" classfield_id="2424" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2425" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2425" tag="tblock_60" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCrop;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2425" tag="hblock_tag_228" canDelete="false" indentLevel="1" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2425" tag="hblock_tag_229" canDelete="false" indentLevel="1" classfield_id="2425" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2426" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2426" tag="tblock_61" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionCut;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2426" tag="hblock_tag_230" canDelete="false" indentLevel="1" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2426" tag="hblock_tag_231" canDelete="false" indentLevel="1" classfield_id="2426" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2427" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2427" tag="tblock_62" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionFillBg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2427" tag="hblock_tag_232" canDelete="false" indentLevel="1" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2427" tag="hblock_tag_233" canDelete="false" indentLevel="1" classfield_id="2427" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2428" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2428" tag="tblock_63" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionFillFg;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2428" tag="hblock_tag_234" canDelete="false" indentLevel="1" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2428" tag="hblock_tag_235" canDelete="false" indentLevel="1" classfield_id="2428" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2429" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2429" tag="tblock_64" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionPaste;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2429" tag="hblock_tag_236" canDelete="false" indentLevel="1" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2429" tag="hblock_tag_237" canDelete="false" indentLevel="1" classfield_id="2429" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2430" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2430" tag="tblock_65" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionPasteInto;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2430" tag="hblock_tag_238" canDelete="false" indentLevel="1" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2430" tag="hblock_tag_239" canDelete="false" indentLevel="1" classfield_id="2430" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2431" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2431" tag="tblock_66" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionRm;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2431" tag="hblock_tag_240" canDelete="false" indentLevel="1" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2431" tag="hblock_tag_241" canDelete="false" indentLevel="1" classfield_id="2431" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2432" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2432" tag="tblock_67" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionSelectAll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2432" tag="hblock_tag_242" canDelete="false" indentLevel="1" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2432" tag="hblock_tag_243" canDelete="false" indentLevel="1" classfield_id="2432" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2433" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2433" tag="tblock_68" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_selectionSelectNone;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2433" tag="hblock_tag_244" canDelete="false" indentLevel="1" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2433" tag="hblock_tag_245" canDelete="false" indentLevel="1" classfield_id="2433" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2434" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2434" tag="tblock_69" canDelete="false" indentLevel="1" role_id="-1" text=" KisSideBar * m_sideBar;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2434" tag="hblock_tag_246" canDelete="false" indentLevel="1" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2434" tag="hblock_tag_247" canDelete="false" indentLevel="1" classfield_id="2434" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2435" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2435" tag="tblock_70" canDelete="false" indentLevel="1" role_id="-1" text=" KToggleAction * m_sidebarToggle;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2435" tag="hblock_tag_248" canDelete="false" indentLevel="1" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2435" tag="hblock_tag_249" canDelete="false" indentLevel="1" classfield_id="2435" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2436" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2436" tag="tblock_71" canDelete="false" indentLevel="1" role_id="-1" text=" KoTabBar * m_tabBar;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2436" tag="hblock_tag_250" canDelete="false" indentLevel="1" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2436" tag="hblock_tag_251" canDelete="false" indentLevel="1" classfield_id="2436" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2437" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2437" tag="tblock_72" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabFirst;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2437" tag="hblock_tag_252" canDelete="false" indentLevel="1" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2437" tag="hblock_tag_253" canDelete="false" indentLevel="1" classfield_id="2437" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2438" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2438" tag="tblock_73" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabLast;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2438" tag="hblock_tag_254" canDelete="false" indentLevel="1" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2438" tag="hblock_tag_255" canDelete="false" indentLevel="1" classfield_id="2438" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2439" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2439" tag="tblock_74" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabLeft;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2439" tag="hblock_tag_256" canDelete="false" indentLevel="1" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2439" tag="hblock_tag_257" canDelete="false" indentLevel="1" classfield_id="2439" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2440" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2440" tag="tblock_75" canDelete="false" indentLevel="1" role_id="-1" text=" QButton * m_tabRight;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2440" tag="hblock_tag_258" canDelete="false" indentLevel="1" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2440" tag="hblock_tag_259" canDelete="false" indentLevel="1" classfield_id="2440" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2442" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2442" tag="tblock_76" canDelete="false" indentLevel="1" role_id="-1" text=" KisRuler * m_vRuler;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2442" tag="hblock_tag_260" canDelete="false" indentLevel="1" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2442" tag="hblock_tag_261" canDelete="false" indentLevel="1" classfield_id="2442" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2443" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2443" tag="tblock_77" canDelete="false" indentLevel="1" role_id="-1" text=" QScrollBar * m_vScroll;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2443" tag="hblock_tag_262" canDelete="false" indentLevel="1" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2443" tag="hblock_tag_263" canDelete="false" indentLevel="1" classfield_id="2443" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2444" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2444" tag="tblock_78" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_xoff;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2444" tag="hblock_tag_264" canDelete="false" indentLevel="1" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2444" tag="hblock_tag_265" canDelete="false" indentLevel="1" classfield_id="2444" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2445" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2445" tag="tblock_79" canDelete="false" indentLevel="1" role_id="-1" text=" Q_INT32 m_yoff;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2445" tag="hblock_tag_266" canDelete="false" indentLevel="1" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2445" tag="hblock_tag_267" canDelete="false" indentLevel="1" classfield_id="2445" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2446" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2446" tag="tblock_80" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_zoomIn;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2446" tag="hblock_tag_268" canDelete="false" indentLevel="1" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2446" tag="hblock_tag_269" canDelete="false" indentLevel="1" classfield_id="2446" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2447" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2447" tag="tblock_81" canDelete="false" indentLevel="1" role_id="-1" text=" KAction * m_zoomOut;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2447" tag="hblock_tag_270" canDelete="false" indentLevel="1" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2447" tag="hblock_tag_271" canDelete="false" indentLevel="1" classfield_id="2447" role_id="-1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2366" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2366" tag="tblock_0" canDelete="false" indentLevel="1" role_id="0" text=" KisUndoAdapter m_adapter;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2366" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2366" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2366" tag="hblock_tag_83" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2366" tag="hblock_tag_84" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2366" tag="hblock_tag_85" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2366" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2368" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2368" tag="tblock_1" canDelete="false" indentLevel="1" role_id="0" text=" KisBrush m_brush;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2368" tag="hblock_tag_86" canDelete="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2368" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2368" tag="hblock_tag_88" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2368" tag="hblock_tag_89" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2368" tag="hblock_tag_90" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2368" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2369" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2369" tag="tblock_2" canDelete="false" indentLevel="1" role_id="0" text=" KisResourceMediator m_brushMediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2369" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2369" tag="hblock_tag_92" canDelete="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2369" tag="hblock_tag_93" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2369" tag="hblock_tag_94" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2369" tag="hblock_tag_95" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2369" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2382" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2382" tag="tblock_3" canDelete="false" indentLevel="1" role_id="0" text=" KisDoc m_doc;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2382" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2382" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2382" tag="hblock_tag_98" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2382" tag="hblock_tag_99" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2382" tag="hblock_tag_100" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2382" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2385" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2385" tag="tblock_4" canDelete="false" indentLevel="1" role_id="0" text=" KisGradient m_gradient;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2385" tag="hblock_tag_101" canDelete="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2385" tag="hblock_tag_102" canDelete="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2385" tag="hblock_tag_103" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2385" tag="hblock_tag_104" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2385" tag="hblock_tag_105" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2385" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2390" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2390" tag="tblock_5" canDelete="false" indentLevel="1" role_id="0" text=" KisBuilderMonitor m_imgBuilderMgr;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2390" tag="hblock_tag_106" canDelete="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2390" tag="hblock_tag_107" canDelete="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2390" tag="hblock_tag_108" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2390" tag="hblock_tag_109" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2390" tag="hblock_tag_110" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2390" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2422" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2422" tag="tblock_6" canDelete="false" indentLevel="1" role_id="0" text=" KisPattern m_pattern;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2422" tag="hblock_tag_111" canDelete="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2422" tag="hblock_tag_112" canDelete="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2422" tag="hblock_tag_113" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2422" tag="hblock_tag_114" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2422" tag="hblock_tag_115" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2422" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2423" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2423" tag="tblock_7" canDelete="false" indentLevel="1" role_id="0" text=" KisResourceMediator m_patternMediator;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2423" tag="hblock_tag_116" canDelete="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2423" tag="hblock_tag_117" canDelete="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2423" tag="hblock_tag_118" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2423" tag="hblock_tag_119" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2423" tag="hblock_tag_120" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2423" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="2441" field_type="3" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="2441" tag="tblock_8" canDelete="false" indentLevel="1" role_id="0" text=" KisTool m_tool;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="2441" tag="hblock_tag_121" canDelete="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="2441" tag="hblock_tag_122" canDelete="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="2441" tag="hblock_tag_123" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="2441" tag="hblock_tag_124" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="2441" tag="hblock_tag_125" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="2441" role_id="0" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ </codegenerator>
+ </codegeneration>
+ </XMI.content>
+</XMI>
diff --git a/chalk/doc/channels_masks_selections b/chalk/doc/channels_masks_selections
new file mode 100644
index 000000000..4ce65414f
--- /dev/null
+++ b/chalk/doc/channels_masks_selections
@@ -0,0 +1,12 @@
+We did a rethink on channels, selections and tqmasks last summer.
+
+Traditionally, a tqmask is seen as an extra channel for an image, analogous
+to the alpha channel. We want to do away with that idea.
+
+A layer can have a number of permanent selections associated with it.
+Such a selection can handle a composite method (determining the composition method
+for the selected pixels) or a filter (making it an adjustment layer).
+
+Of course, a selection is just an 8-bit per pixel single channel layer that
+belongs to a layer, so all filters can work automatically on a selection,
+except that we don't have the ui for that yet.
diff --git a/chalk/doc/colordiff b/chalk/doc/colordiff
new file mode 100644
index 000000000..b84a98fa8
--- /dev/null
+++ b/chalk/doc/colordiff
@@ -0,0 +1,68 @@
+From: Mathew Brennesholtz <msb@philabs.research.philips.com>
+Subject: Re: contrast of color
+Date: 01 Oct 1999 00:00:00 GMT
+Message-ID: <37F4DD62.3AABA5D2@philabs.research.philips.com>
+Content-Transfer-Encoding: 7bit
+References: <37F3395E.484C921A@netvision.net.il>
+Content-Type: text/plain; charset=us-ascii
+X-Complaints-To: usenet@philabs.research.philips.com
+X-Trace: news.philabs.research.philips.com 938783269 3770 130.140.53.137 (1 Oct 1999 13:07:49 GMT)
+Organization: Philips Research, Briarcliff Manor, NY
+Mime-Version: 1.0
+NNTP-Posting-Date: 1 Oct 1999 13:07:49 GMT
+Newsgroups: sci.engr.color
+
+One intention of the L*a*b* formulation is that when you calculate:
+
+ delta-E = sqrt((delta-L*)^2 + (delta-a*)^2 + (delta-b*)^2),
+
+a delta-E = 1 should be just barely percievable to some viewers. If you
+want most people to be able to distinguish between two colors most of the
+time, a delta-E = 3 is needed. Delta-E = 3 is called a MPCD (minimum
+perceptible color difference) or a JND (just noticable difference) by
+some authors. Keep in mind that the L*a*b* space is not a perfectly
+uniform space, so the delta-E value that is percievable depends on
+location in x-y space and the direction between the two colors.
+
+Using a delta-E = 1 threshold, M. R. Pointer (The Number of Discernible
+Colours, Color Research and Application, 23:1 February 1998) calculated
+that there are 2.28 million discernable color/luminance combinations.
+Other studies (see references in Pointer) show that printing inks give
+1.6 million colors and EBU phosphors give 1.35 million colors. These are
+far less than the 16 million colors claimed by 8 bit/color video cards,
+never mind 10 or 12 bit video systems. Obviously, some of these
+color/luminance combinations are indistiguishable from each other.
+
+Hope that helps.
+
+IPLAB wrote:
+
+> Hallow !!
+> I understand that to measure contrast between two objects in color
+> picture, I can calculate the vector distance on L a b space (between
+> the two objects).
+> Does anyone can tell me what is the minimum of the Vector distance
+> ,that eye can see ??
+>
+> Thanks
+>
+> from sally
+
+http://www.compuphase.com/cmetric.htm:
+
+
+typedef struct {
+ unsigned char r, g, b;
+} RGB;
+
+long ColourDistance(RGB e1, RGB e2)
+{
+ long r,g,b;
+ long rmean;
+
+ rmean = ( (int)e1.r + (int)e2.r ) / 2;
+ r = (int)e1.r - (int)e2.r;
+ g = (int)e1.g - (int)e2.g;
+ b = (int)e1.b - (int)e2.b;
+ return (((512+rmean)*r*r)>>8) + 4*g*g + (((767-rmean)*b*b)>>8);
+}
diff --git a/chalk/doc/colorspaces.xmi b/chalk/doc/colorspaces.xmi
new file mode 100644
index 000000000..cd874de8f
--- /dev/null
+++ b/chalk/doc/colorspaces.xmi
@@ -0,0 +1,41965 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" timestamp="2005-08-15T16:41:24" xmi.version="1.2" >
+ <XMI.header>
+ <XMI.documentation>
+ <XMI.exporter>umbrello uml modeller http://uml.sf.net</XMI.exporter>
+ <XMI.exporterVersion>1.4.2</XMI.exporterVersion>
+ <XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
+ </XMI.documentation>
+ <XMI.metamodel xmi.name="UML" href="UML.xml" xmi.version="1.3" />
+ </XMI.header>
+ <XMI.content>
+ <UML:Model isSpecification="false" isLeaf="false" isRoot="false" isAbstract="false" >
+ <UML:Namespace.ownedElement>
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="3" isRoot="false" isAbstract="false" name="datatype" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="16" isRoot="false" isAbstract="false" name="typedef" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="1766" isRoot="false" isAbstract="false" name="enum" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="12051" isRoot="false" isAbstract="false" name="interface" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="2" isRoot="false" isAbstract="false" name="int" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="4" isRoot="false" isAbstract="false" name="char" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="5" isRoot="false" isAbstract="false" name="boolean" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="6" isRoot="false" isAbstract="false" name="float" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="7" isRoot="false" isAbstract="false" name="double" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="8" isRoot="false" isAbstract="false" name="byte" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="9" isRoot="false" isAbstract="false" name="short" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="10" isRoot="false" isAbstract="false" name="string" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="32" isRoot="false" isAbstract="false" name="void" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="34" isRoot="false" isAbstract="false" name="const KisID&amp;" elementReference="33" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="54" isRoot="false" isAbstract="false" name="const Q_UINT8*" elementReference="53" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="76" isRoot="false" isAbstract="false" name="const QColor&amp;" elementReference="75" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="78" isRoot="false" isAbstract="false" name="Q_UINT8*" elementReference="53" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="90" isRoot="false" isAbstract="false" name="QColor*" elementReference="75" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="96" isRoot="false" isAbstract="false" name="QUANTUM*" elementReference="84" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="109" isRoot="false" isAbstract="false" name="KisPixel&amp;" elementReference="13" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="126" isRoot="false" isAbstract="false" name="KisAbstractColorSpace*" elementReference="26" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="151" isRoot="false" isAbstract="false" name="Q_UINT16*" elementReference="150" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="154" isRoot="false" isAbstract="false" name="KisColorAdjustment*" elementReference="153" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="165" isRoot="false" isAbstract="false" name="const Q_UINT8**" elementReference="53" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="171" isRoot="false" isAbstract="false" name="Q_UINT8**" elementReference="53" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="173" isRoot="false" isAbstract="false" name="Q_INT32*" elementReference="44" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="202" isRoot="false" isAbstract="false" name="const KisCompositeOp&amp;" elementReference="201" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="240" isRoot="false" isAbstract="false" name="const KisAbstractColorSpace&amp;" elementReference="26" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="244" isRoot="false" isAbstract="false" name="KisAbstractColorSpace&amp;" elementReference="26" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="362" isRoot="false" isAbstract="false" name="const Q_UINT16" elementReference="150" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="569" isRoot="false" isAbstract="false" name="const Q_UINT8" elementReference="53" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="871" isRoot="false" isAbstract="false" name="QObject*" elementReference="870" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="873" isRoot="false" isAbstract="false" name="const char*" elementReference="4" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="875" isRoot="false" isAbstract="false" name="const QStringList&amp;" elementReference="226" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="893" isRoot="false" isAbstract="false" name="float*" elementReference="6" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1749" isRoot="false" isAbstract="false" name="WetPix*" elementReference="1639" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1753" isRoot="false" isAbstract="false" name="WetPack*" elementReference="1641" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1756" isRoot="false" isAbstract="false" name="Q_UINT32*" elementReference="20" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1773" isRoot="false" isAbstract="false" name="CELL_PTR" elementReference="1772" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="11" isRoot="false" isAbstract="false" name="QPainter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="12" isRoot="false" isAbstract="false" name="KisIteratorPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="13" isRoot="false" isAbstract="false" name="KisPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="14" isRoot="false" isAbstract="false" name="KisPixelRO" />
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="15" isRoot="false" isAbstract="false" name="KisProfilePair" />
+ <UML:Class comment="// This would be better, I guess." isSpecification="false" isLeaf="false" visibility="public" xmi.id="17" isRoot="false" isAbstract="false" name="transform" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="19" isRoot="false" initialValue="" type="18" isAbstract="false" name="srcProfile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="21" isRoot="false" initialValue="" type="20" isAbstract="false" name="srcCmType" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="22" isRoot="false" initialValue="" type="18" isAbstract="false" name="dstProfile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="23" isRoot="false" initialValue="" type="20" isAbstract="false" name="dstType" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="24" isRoot="false" initialValue="" type="20" isAbstract="false" name="renderIntent" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="18" isRoot="false" isAbstract="false" name="KisProfile" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="20" isRoot="false" isAbstract="false" name="Q_UINT32" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="25" isRoot="false" isAbstract="false" name="struct KisColorAdjustment" />
+ <UML:Class comment="A colorspace strategy is the definition of a certain color model
+in Chalk." isSpecification="false" isLeaf="false" visibility="public" xmi.id="26" isRoot="false" isAbstract="false" name="KisAbstractColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="28" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="227" isRoot="false" initialValue="" type="226" isAbstract="false" name="m_profileFilenames" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="228" isRoot="false" initialValue="" type="80" isAbstract="false" name="m_defaultProfile" />
+ <UML:Attribute comment="// A small buffer for conversion from and to qcolor." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="229" isRoot="false" initialValue="" type="78" isAbstract="false" name="m_qcolordata" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="230" isRoot="false" initialValue="" type="44" isAbstract="false" name="m_alphaPos" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="231" isRoot="false" initialValue="" type="44" isAbstract="false" name="m_alphaSize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="232" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultToRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="233" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultFromRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="234" isRoot="false" initialValue="" type="33" isAbstract="false" name="m_id" />
+ <UML:Attribute comment="// The colorspace type as defined by littlecms" isSpecification="false" isLeaf="false" visibility="private" xmi.id="235" isRoot="false" initialValue="" type="36" isAbstract="false" name="m_cmType" />
+ <UML:Attribute comment="// The colorspace signature as defined in icm/icc files" isSpecification="false" isLeaf="false" visibility="private" xmi.id="236" isRoot="false" initialValue="" type="38" isAbstract="false" name="m_colorSpaceSignature" />
+ <UML:Attribute comment="// Cache for existing transforms" isSpecification="false" isLeaf="false" visibility="private" xmi.id="238" isRoot="false" initialValue="" type="237" isAbstract="false" name="m_transforms" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="245" isRoot="false" initialValue="" type="20" isAbstract="false" name="m_cachesize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="246" isRoot="false" initialValue="" type="78" isAbstract="false" name="m_conversionCache" />
+ <UML:Operation comment="Create a new colorspace strategy.
+
+@param id The Chalk identification of this color model.
+@param cmType The littlecms colorstrategy type we wrap.
+@param colorSpaceSignature The icc signature for the colorspace we are." isSpecification="false" isLeaf="false" visibility="public" xmi.id="31" isRoot="false" isAbstract="false" name="KisAbstractColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="35" isRoot="false" value="" type="34" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="37" isRoot="false" value="" type="36" isAbstract="false" name="cmType" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="39" isRoot="false" value="" type="38" isAbstract="false" name="colorSpaceSignature" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="40" isRoot="false" isAbstract="false" name="~ KisAbstractColorSpace" />
+ <UML:Operation comment="//========== Channels =====================================================//// Return a vector describing all the channels this color model has." isSpecification="false" isLeaf="false" visibility="public" xmi.id="41" isRoot="false" isAbstract="true" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12481" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The total number of channels for a single pixel in this color model" isSpecification="false" isLeaf="false" visibility="public" xmi.id="43" isRoot="false" isAbstract="true" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12482" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The total number of color channels (excludes alpha and substance) for a single
+pixel in this color model." isSpecification="false" isLeaf="false" visibility="public" xmi.id="45" isRoot="false" isAbstract="true" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12483" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="46" isRoot="false" isAbstract="false" name="nSubstanceChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12484" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The size in bytes of a single pixel in this color model" isSpecification="false" isLeaf="false" visibility="public" xmi.id="47" isRoot="false" isAbstract="true" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12485" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Whether this color model has a channel of type ALPHA" isSpecification="false" isLeaf="false" visibility="public" xmi.id="48" isRoot="false" isAbstract="true" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12486" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="50" isRoot="false" isAbstract="false" name="alphaPos" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12487" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="51" isRoot="false" isAbstract="false" name="alphaSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12488" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return a string with the channel's value suitable for display in the gui." isSpecification="false" isLeaf="false" visibility="public" xmi.id="52" isRoot="false" isAbstract="true" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12489" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="55" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="56" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return a string with the channel's value with integer
+channels normalised to the floating point range 0 to 1, if appropriate." isSpecification="false" isLeaf="false" visibility="public" xmi.id="58" isRoot="false" isAbstract="true" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12490" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="59" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="60" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="61" isRoot="false" isAbstract="false" name="id" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12491" type="33" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="62" isRoot="false" isAbstract="false" name="setColorSpaceType" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="63" isRoot="false" value="" type="20" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="64" isRoot="false" isAbstract="false" name="colorSpaceType" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12492" type="20" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="65" isRoot="false" isAbstract="false" name="setColorSpaceSignature" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="66" isRoot="false" value="" type="38" isAbstract="false" name="signature" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="67" isRoot="false" isAbstract="false" name="colorSpaceSignature" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12493" type="38" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="//========== Capabilities =================================================///**
+Returns the list of user-visible composite ops supported by this colourspace. Internal
+ops such as COPY, CLEAR, and ERASE, are not included as these make no sense
+for layers in the full image model." isSpecification="false" isLeaf="false" visibility="public" xmi.id="68" isRoot="false" isAbstract="true" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12494" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="70" isRoot="false" isAbstract="false" name="valid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12495" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="//========== Display profiles =============================================///**
+Get a list of profiles that apply to this color space" isSpecification="false" isLeaf="false" visibility="public" xmi.id="71" isRoot="false" isAbstract="false" name="profiles" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12496" type="72" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the number of profiles available for this color space" isSpecification="false" isLeaf="false" visibility="public" xmi.id="73" isRoot="false" isAbstract="false" name="profileCount" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12497" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="//================= Conversion functions ==================================///**
+The nativeColor methods take a given color defined as an RGB QColor
+and fills a byte array with the corresponding color in the
+the colorspace managed by this strategy.
+
+The profile parameter is the profile of the paint device; the other profile
+is the display profile -- since we are moving from QColor
+that have most likely been picked from the display itself.
+
+XXX: We actually do not use the display yet, nor the paint device profile" isSpecification="false" isLeaf="false" visibility="public" xmi.id="74" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="77" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="79" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="81" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="82" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="83" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="85" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="86" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="87" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The toQColor methods take a byte array that is at least pixelSize() long
+and converts the contents to a QColor, using the given profile as a source
+profile and the display profile as a destination profile.
+
+XXX: We actually do not use the display yet, nor the paint device profile
+" isSpecification="false" isLeaf="false" visibility="public" xmi.id="88" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="89" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="91" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="92" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="93" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="94" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="95" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="97" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="98" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the alpha value of the given pixel.
+XXX: Change to float/int to match setAlpha() when that changes." isSpecification="false" isLeaf="false" visibility="public" xmi.id="99" isRoot="false" isAbstract="true" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="100" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="101" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="102" isRoot="false" isAbstract="true" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12498" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="103" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="104" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="105" isRoot="false" isAbstract="true" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12499" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="106" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="107" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function is used to convert a KisPixelRepresentation from this color strategy to the specified
+color strategy." isSpecification="false" isLeaf="false" visibility="public" xmi.id="108" isRoot="false" isAbstract="false" name="convertTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12500" type="49" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="110" isRoot="false" value="" type="109" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="111" isRoot="false" value="" type="109" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="112" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convert the pixels in data to (8-bit BGRA) QImage using the specified profiles.
+The pixels are supposed to be encoded in this color model.
+
+@param data A pointer to a contiguous memory region containing width * height pixels
+@param width in pixels
+@param height in pixels
+@param srcProfile source profile
+@param dstProfile destination profile
+@param renderingIntent the rendering intent
+@param exposure The exposure setting for rendering a preview of a high dynamic range image." isSpecification="false" isLeaf="false" visibility="public" xmi.id="113" isRoot="false" isAbstract="true" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12501" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="114" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="115" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="116" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="117" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="118" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="119" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="120" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convert a byte array of srcLen pixels *src to the specified color space
+and put the converted bytes into the prepared byte array *dst.
+
+Returns false if the conversion failed, true if it succeeded" isSpecification="false" isLeaf="false" visibility="public" xmi.id="122" isRoot="false" isAbstract="false" name="convertPixelsTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12502" type="49" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="123" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="124" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="125" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="127" isRoot="false" value="" type="126" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="128" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="129" isRoot="false" value="" type="20" isAbstract="false" name="numPixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="130" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convert the value of the channel at the specified position into
+an 8-bit value." isSpecification="false" isLeaf="false" visibility="public" xmi.id="131" isRoot="false" isAbstract="false" name="scaleToU8" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12503" type="53" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="132" isRoot="false" value="" type="54" isAbstract="false" name="srcPixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="133" isRoot="false" value="" type="44" isAbstract="false" name="channelPos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convert the value of the channel at the specified position into
+a 16-bit value. This may be upscaling or downscaling, depending
+on the defined value of the channel" isSpecification="false" isLeaf="false" visibility="public" xmi.id="134" isRoot="false" isAbstract="false" name="scaleToU16" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12504" type="53" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="135" isRoot="false" value="" type="54" isAbstract="false" name="srcPixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="136" isRoot="false" value="" type="44" isAbstract="false" name="channelPos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="//============================== Manipulation fucntions ==========================//// // The manipulation functions have default implementations that _convert_ the pixel// to a QColor and back. Reimplement these methods in your color strategy!///**
+Set the alpha channel to the given value.
+
+pixels -- a pointer to the pixels that will have their alpha set to this value
+alpha -- XXX: This must become int or float
+nPixels -- the number of pixels
+
+XXX: Also add a function that modifies the current alpha with the given alpha, i.e., premultiply them?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="137" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="138" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="139" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="140" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Applies the specified 8-bit alpha tqmask to the pixels. We assume that there are just
+as many alpha values as pixels but we do not check this." isSpecification="false" isLeaf="false" visibility="public" xmi.id="141" isRoot="false" isAbstract="false" name="applyAphaU8Mask" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="142" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="143" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="144" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Applies the inverted 8-bit alpha tqmask to the pixels. We assume that there are just
+as many alpha values as pixels but we do not check this." isSpecification="false" isLeaf="false" visibility="public" xmi.id="145" isRoot="false" isAbstract="false" name="applyInverseAlphaU8Mask" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="146" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="147" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="148" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Create an adjustment object for adjusting the brightness and contrast
+transferValues is a 256 bins array with values from 0 to 0xFFFF" isSpecification="false" isLeaf="false" visibility="public" xmi.id="149" isRoot="false" isAbstract="false" name="createBrightnessContrastAdjustment" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12505" type="154" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="152" isRoot="false" value="" type="151" isAbstract="false" name="transferValues" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Apply the adjustment created with onr of the other functions" isSpecification="false" isLeaf="false" visibility="public" xmi.id="155" isRoot="false" isAbstract="false" name="applyAdjustment" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="156" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="157" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="158" isRoot="false" value="" type="154" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="159" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// XXX: What with alpha channels? YYY: Add an overloaded function that takes alpha into account?/**
+Get the difference between 2 colors, normalized in the range (0,255)" isSpecification="false" isLeaf="false" visibility="public" xmi.id="160" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12506" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="161" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="162" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Mix the colors given their weights and return in dst
+The sum of weights is assumed 255" isSpecification="false" isLeaf="false" visibility="public" xmi.id="164" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="166" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="167" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="168" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="169" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convolve the given array of pointers to pixels and return the result
+in dst. The kernel values are clamped between -128 and 128" isSpecification="false" isLeaf="false" visibility="public" xmi.id="170" isRoot="false" isAbstract="false" name="convolveColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="172" isRoot="false" value="" type="171" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="174" isRoot="false" value="" type="173" isAbstract="false" name="kernelValues" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="176" isRoot="false" value="" type="175" isAbstract="false" name="channelFlags" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="177" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="178" isRoot="false" value="" type="44" isAbstract="false" name="factor" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="179" isRoot="false" value="" type="44" isAbstract="false" name="offset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="180" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Darken all color channels with the given amount. If compensate is true,
+the compensation factor will be used to limit the darkening.
+
+(See the bumpmap filter)" isSpecification="false" isLeaf="false" visibility="public" xmi.id="181" isRoot="false" isAbstract="false" name="darken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="182" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="183" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="184" isRoot="false" value="" type="44" isAbstract="false" name="shade" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="185" isRoot="false" value="" type="49" isAbstract="false" name="compensate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="186" isRoot="false" value="" type="7" isAbstract="false" name="compensation" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="187" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Calculate the intensity of the given pixel, scaled down to the range 0-255. XXX: Maybe this should be more flexible" isSpecification="false" isLeaf="false" visibility="public" xmi.id="188" isRoot="false" isAbstract="false" name="intensity8" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12507" type="53" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="189" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Compose two arrays of pixels together. If source and target
+are not the same colour model, the source pixels will be
+converted to the target model." isSpecification="false" isLeaf="false" visibility="public" xmi.id="190" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="191" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="192" isRoot="false" value="" type="44" isAbstract="false" name="dststride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="193" isRoot="false" value="" type="126" isAbstract="false" name="srcSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="194" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="195" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="196" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="197" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="198" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="199" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="200" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="203" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="204" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="205" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Compose two byte arrays containing pixels in the same color
+model together." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="206" isRoot="false" isAbstract="true" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="207" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="208" isRoot="false" value="" type="44" isAbstract="false" name="dstRowSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="209" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="210" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="211" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="212" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="213" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="214" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="215" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="216" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="217" isRoot="false" isAbstract="false" name="createTransform" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12508" type="222" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="218" isRoot="false" value="" type="126" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="219" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="220" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="221" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="223" isRoot="false" isAbstract="false" name="getDefaultProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12509" type="80" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="224" isRoot="false" isAbstract="false" name="setDefaultProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="225" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="239" isRoot="false" isAbstract="false" name="KisAbstractColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="241" isRoot="false" value="" type="240" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="242" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12510" type="244" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="243" isRoot="false" value="" type="240" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="237" isRoot="false" isAbstract="false" name="TransformMap" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="27" isRoot="false" isAbstract="false" name="KShared" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="33" isRoot="false" isAbstract="false" name="KisID" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="36" isRoot="false" isAbstract="false" name="DWORD" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="38" isRoot="false" isAbstract="false" name="icColorSpaceSignature" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="42" isRoot="false" isAbstract="false" name="vKisChannelInfoSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="44" isRoot="false" isAbstract="false" name="Q_INT32" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="49" isRoot="false" isAbstract="false" name="bool" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="53" isRoot="false" isAbstract="false" name="Q_UINT8" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="57" isRoot="false" isAbstract="false" name=TQSTRING_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="69" isRoot="false" isAbstract="false" name="KisCompositeOpList" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="72" isRoot="false" isAbstract="false" name="vKisProfileSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="75" isRoot="false" isAbstract="false" name="QColor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="80" isRoot="false" isAbstract="false" name="KisProfileSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="84" isRoot="false" isAbstract="false" name="QUANTUM" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="121" isRoot="false" isAbstract="false" name="QImage" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="150" isRoot="false" isAbstract="false" name="Q_UINT16" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="153" isRoot="false" isAbstract="false" name="KisColorAdjustment" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="163" isRoot="false" isAbstract="false" name="Q_INT8" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="175" isRoot="false" isAbstract="false" name="enumChannelFlags" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="201" isRoot="false" isAbstract="false" name="KisCompositeOp" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="222" isRoot="false" isAbstract="false" name="cmsHTRANSFORM" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="226" isRoot="false" isAbstract="false" name=TQSTRINGLIST_OBJECT_NAME_STRING />
+ <UML:Class comment=" Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+This class is the base for all 8-bit/channel colorspaces" isSpecification="false" isLeaf="false" visibility="public" xmi.id="247" isRoot="false" isAbstract="false" name="KisU8BaseColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="248" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="251" isRoot="false" isAbstract="false" name="KisU8BaseColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="252" isRoot="false" value="" type="34" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="253" isRoot="false" value="" type="36" isAbstract="false" name="cmType" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="254" isRoot="false" value="" type="38" isAbstract="false" name="colorSpaceSignature" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+The alpha tqmask is a special color strategy that treats all pixels as
+alpha value with a colour common to the tqmask. The default color is white." isSpecification="false" isLeaf="false" visibility="public" xmi.id="255" isRoot="false" isAbstract="false" name="KisAlphaColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="256" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="349" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="259" isRoot="false" isAbstract="false" name="KisAlphaColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="260" isRoot="false" isAbstract="false" name="~ KisAlphaColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="261" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="262" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="263" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="264" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="265" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="266" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="267" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="268" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="269" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="270" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="271" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="272" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="273" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="274" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="275" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="276" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="277" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="278" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="279" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="280" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="281" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="282" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12511" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="283" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="284" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="285" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12512" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="286" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="287" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="288" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12513" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="289" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="290" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="291" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="292" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="293" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="294" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="295" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="296" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12514" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="297" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12515" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="298" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12516" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="299" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12517" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="300" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12518" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="301" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12519" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="302" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="303" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="304" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12520" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="305" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="306" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="307" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12521" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="308" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="309" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="310" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="311" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="312" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="313" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="314" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="315" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="316" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="317" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="318" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="319" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="320" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="321" isRoot="false" isAbstract="false" name="convolveColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="322" isRoot="false" value="" type="171" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="323" isRoot="false" value="" type="173" isAbstract="false" name="kernelValues" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="324" isRoot="false" value="" type="175" isAbstract="false" name="channelFlags" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="325" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="326" isRoot="false" value="" type="44" isAbstract="false" name="factor" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="327" isRoot="false" value="" type="44" isAbstract="false" name="offset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="328" isRoot="false" value="" type="44" isAbstract="false" name="nColors" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Convert a byte array of srcLen pixels *src to the specified color space
+and put the converted bytes into the prepared byte array *dst.
+
+Returns false if the conversion failed, true if it succeeded" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="329" isRoot="false" isAbstract="false" name="convertPixelsTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12522" type="49" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="330" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="331" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="332" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="333" isRoot="false" value="" type="126" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="334" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="335" isRoot="false" value="" type="20" isAbstract="false" name="numPixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="336" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="337" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="338" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="339" isRoot="false" value="" type="44" isAbstract="false" name="dststride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="340" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="341" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="342" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="343" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="344" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="345" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="346" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="347" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="348" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12523" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+This class is the base for all 32-bit float colorspaces." isSpecification="false" isLeaf="false" visibility="public" xmi.id="350" isRoot="false" isAbstract="false" name="KisF32BaseColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="351" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="354" isRoot="false" isAbstract="false" name="KisF32BaseColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="355" isRoot="false" value="" type="34" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="356" isRoot="false" value="" type="36" isAbstract="false" name="cmType" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="357" isRoot="false" value="" type="38" isAbstract="false" name="colorSpaceSignature" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+This is the base class for 16-bit/channel colorspaces. It defines
+a number of common methods, like handling 16-bit alpha and up-
+and down-scaling of channels." isSpecification="false" isLeaf="false" visibility="public" xmi.id="358" isRoot="false" isAbstract="false" name="KisU16BaseColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="359" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="363" isRoot="false" initialValue="" type="362" isAbstract="false" name="U16_OPACITY_OPAQUE" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="364" isRoot="false" initialValue="" type="362" isAbstract="false" name="U16_OPACITY_TRANSPARENT" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="365" isRoot="false" isAbstract="false" name="KisU16BaseColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="366" isRoot="false" value="" type="34" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="367" isRoot="false" value="" type="36" isAbstract="false" name="cmType" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="368" isRoot="false" value="" type="38" isAbstract="false" name="colorSpaceSignature" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2005 Boudewijn Rempt (boud@valdyas.org)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="369" isRoot="false" isAbstract="false" name="KisXyzColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="370" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="566" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="567" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultToRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="568" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultFromRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="570" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_X" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="571" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_Y" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="572" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_Z" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="573" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_ALPHA" ownerScope="classifier" />
+ <UML:Attribute comment="// A small buffer for conversion from and to qcolor." isSpecification="false" isLeaf="false" visibility="private" xmi.id="574" isRoot="false" initialValue="" type="78" isAbstract="false" name="m_qcolordata" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="378" isRoot="false" isAbstract="false" name="KisXyzColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="379" isRoot="false" isAbstract="false" name="~ KisXyzColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="380" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="381" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="382" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="383" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="384" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="385" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="386" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="387" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="388" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="389" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="390" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="391" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="392" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="393" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="394" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="395" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="396" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="397" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="398" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="399" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="400" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="401" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="402" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="403" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="404" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="405" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12524" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="406" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="407" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="408" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12525" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="409" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="410" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="411" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12526" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="412" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="413" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="414" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="415" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="416" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="417" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="418" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="419" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12527" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="420" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12528" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="421" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12529" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="422" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12530" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="423" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12531" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="424" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12532" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="425" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="426" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="427" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12533" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="428" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="429" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="430" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12534" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="431" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="432" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="433" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="434" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="435" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="436" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="437" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="438" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="439" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="440" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="441" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="442" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="443" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="444" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="445" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="446" isRoot="false" value="" type="44" isAbstract="false" name="dststride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="447" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="448" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="449" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="450" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="451" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="452" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="453" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="454" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="455" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12535" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="456" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="457" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="458" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="459" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="460" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="461" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="462" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="463" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="464" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="465" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="466" isRoot="false" isAbstract="false" name="compositeMultiply" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="467" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="468" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="469" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="470" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="471" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="472" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="473" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="474" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="475" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="476" isRoot="false" isAbstract="false" name="compositeDivide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="477" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="478" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="479" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="480" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="481" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="482" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="483" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="484" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="485" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="486" isRoot="false" isAbstract="false" name="compositeScreen" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="487" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="488" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="489" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="490" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="491" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="492" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="493" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="494" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="495" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="496" isRoot="false" isAbstract="false" name="compositeOverlay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="497" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="498" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="499" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="500" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="501" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="502" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="503" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="504" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="505" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="506" isRoot="false" isAbstract="false" name="compositeDodge" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="507" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="508" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="509" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="510" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="511" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="512" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="513" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="514" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="515" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="516" isRoot="false" isAbstract="false" name="compositeBurn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="517" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="518" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="519" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="520" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="521" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="522" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="523" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="524" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="525" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="526" isRoot="false" isAbstract="false" name="compositeDarken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="527" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="528" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="529" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="530" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="531" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="532" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="533" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="534" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="535" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="536" isRoot="false" isAbstract="false" name="compositeLighten" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="537" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="538" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="539" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="540" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="541" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="542" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="543" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="544" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="545" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="546" isRoot="false" isAbstract="false" name="compositeErase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="547" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="548" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="549" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="550" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="551" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="552" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="553" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="554" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="555" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="556" isRoot="false" isAbstract="false" name="compositeCopy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="557" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="558" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="559" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="560" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="561" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="562" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="563" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="564" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="565" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="373" isRoot="false" isAbstract="false" name="Pixel" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="374" isRoot="false" initialValue="" type="150" isAbstract="false" name="X" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="375" isRoot="false" initialValue="" type="150" isAbstract="false" name="Y" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="376" isRoot="false" initialValue="" type="150" isAbstract="false" name="Z" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="377" isRoot="false" initialValue="" type="150" isAbstract="false" name="alpha" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="1130" isRoot="false" initialValue="" type="6" isAbstract="false" name="blue" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="1131" isRoot="false" initialValue="" type="6" isAbstract="false" name="green" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="1132" isRoot="false" initialValue="" type="6" isAbstract="false" name="red" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="575" isRoot="false" isAbstract="false" name="KisCmykColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="576" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="660" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="661" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultToRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="662" isRoot="false" initialValue="" type="222" isAbstract="false" name="m_defaultFromRGB" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="663" isRoot="false" initialValue="" type="78" isAbstract="false" name="m_qcolordata" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="664" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_CYAN" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="665" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_MAGENTA" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="666" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_YELLOW" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="667" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_BLACK" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="668" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_CMYK_ALPHA" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="579" isRoot="false" isAbstract="false" name="KisCmykColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="580" isRoot="false" isAbstract="false" name="~ KisCmykColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="581" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="582" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="583" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="584" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="585" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="586" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="587" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="588" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="589" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="590" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="591" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="592" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="593" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="594" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="595" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="596" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="597" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="598" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="599" isRoot="false" value="" type="90" isAbstract="false" name="color" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="600" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="601" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="602" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="603" isRoot="false" value="" type="90" isAbstract="false" name="color" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="604" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="605" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="606" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12536" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="607" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="608" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="609" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12537" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="610" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="611" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="612" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="613" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="614" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="615" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="616" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="617" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12538" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="618" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12539" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="619" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12540" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="620" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12541" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="621" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12542" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="622" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12543" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="623" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="624" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="625" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12544" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="626" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="627" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="628" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12545" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="629" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="630" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="631" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="632" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="633" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="634" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="635" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="636" isRoot="false" isAbstract="false" name="adjustBrightness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="637" isRoot="false" value="" type="78" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="638" isRoot="false" value="" type="163" isAbstract="false" name="adjust" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="639" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="640" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="641" isRoot="false" value="" type="44" isAbstract="false" name="dstRowSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="642" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="643" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="644" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="645" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="646" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="647" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="648" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="649" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="650" isRoot="false" isAbstract="false" name="valid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12546" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="651" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12547" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="652" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="653" isRoot="false" value="" type="78" isAbstract="false" name="dstRowStart" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="654" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="655" isRoot="false" value="" type="54" isAbstract="false" name="srcRowStart" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="656" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="657" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="658" isRoot="false" value="" type="44" isAbstract="false" name="numColumns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="659" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="669" isRoot="false" isAbstract="false" name="KisGrayColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="670" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="860" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="861" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_GRAY" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="862" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_GRAY_ALPHA" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="673" isRoot="false" isAbstract="false" name="KisGrayColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="674" isRoot="false" isAbstract="false" name="~ KisGrayColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="675" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="676" isRoot="false" value="" type="78" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="677" isRoot="false" value="" type="53" isAbstract="false" name="gray" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="678" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="679" isRoot="false" isAbstract="false" name="getPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="680" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="681" isRoot="false" value="" type="78" isAbstract="false" name="gray" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="682" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="683" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="684" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="685" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="686" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="687" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="688" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="689" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="690" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="691" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="692" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="693" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="694" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="695" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="696" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="697" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="698" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="699" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="700" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="701" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="702" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="703" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="704" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="705" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="706" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="707" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="708" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12548" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="709" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="710" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="711" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12549" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="712" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="713" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="714" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12550" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="715" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="716" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="717" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="718" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="719" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="720" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="721" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="722" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12551" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="723" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12552" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="724" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12553" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="725" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12554" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="726" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12555" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="727" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12556" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="728" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="729" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="730" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12557" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="731" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="732" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="733" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12558" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="734" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="735" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="736" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="737" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="738" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="739" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="740" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="741" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="742" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="743" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="744" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="745" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="746" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="747" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="748" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="749" isRoot="false" value="" type="44" isAbstract="false" name="dststride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="750" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="751" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="752" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="753" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="754" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="755" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="756" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="757" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="758" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12559" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="759" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="760" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="761" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="762" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="763" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="764" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="765" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="766" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="767" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="768" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="769" isRoot="false" isAbstract="false" name="compositeMultiply" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="770" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="771" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="772" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="773" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="774" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="775" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="776" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="777" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="778" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="779" isRoot="false" isAbstract="false" name="compositeDivide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="780" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="781" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="782" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="783" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="784" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="785" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="786" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="787" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="788" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="789" isRoot="false" isAbstract="false" name="compositeScreen" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="790" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="791" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="792" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="793" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="794" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="795" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="796" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="797" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="798" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="799" isRoot="false" isAbstract="false" name="compositeOverlay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="800" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="801" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="802" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="803" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="804" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="805" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="806" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="807" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="808" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="809" isRoot="false" isAbstract="false" name="compositeDodge" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="810" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="811" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="812" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="813" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="814" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="815" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="816" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="817" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="818" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="819" isRoot="false" isAbstract="false" name="compositeBurn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="820" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="821" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="822" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="823" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="824" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="825" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="826" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="827" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="828" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="829" isRoot="false" isAbstract="false" name="compositeDarken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="830" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="831" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="832" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="833" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="834" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="835" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="836" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="837" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="838" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="839" isRoot="false" isAbstract="false" name="compositeLighten" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="840" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="841" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="842" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="843" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="844" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="845" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="846" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="847" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="848" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="849" isRoot="false" isAbstract="false" name="compositeErase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="850" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="851" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="852" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="853" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="854" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="855" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="856" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="857" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="858" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="859" isRoot="false" isAbstract="false" name="KisGrayColorSpaceTester" />
+ <UML:Class comment=" Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+A plugin wrapper around the RGB F32 colour space strategy." isSpecification="false" isLeaf="false" visibility="public" xmi.id="863" isRoot="false" isAbstract="false" name="RGBF32Plugin" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="866" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="878" isRoot="false" initialValue="" type="126" isAbstract="false" name="m_ColorSpaceRGBF32" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="869" isRoot="false" isAbstract="false" name="RGBF32Plugin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="872" isRoot="false" value="" type="871" isAbstract="false" name="tqparent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="874" isRoot="false" value="" type="873" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="876" isRoot="false" value="" type="875" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="877" isRoot="false" isAbstract="false" name="~ RGBF32Plugin" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="864" isRoot="false" isAbstract="false" name="KParts" >
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="865" isRoot="false" isAbstract="false" name="Plugin" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="870" isRoot="false" isAbstract="false" name=TQOBJECT_OBJECT_NAME_STRING />
+ <UML:Class comment=" Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>
+ Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="879" isRoot="false" isAbstract="false" name="KisF32RgbColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="880" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1125" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1126" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_BLUE" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1127" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_GREEN" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1128" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_RED" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1129" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_ALPHA" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="883" isRoot="false" isAbstract="false" name="KisF32RgbColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="884" isRoot="false" isAbstract="false" name="~ KisF32RgbColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="885" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="886" isRoot="false" value="" type="78" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="887" isRoot="false" value="" type="6" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="888" isRoot="false" value="" type="6" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="889" isRoot="false" value="" type="6" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="890" isRoot="false" value="" type="6" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="891" isRoot="false" isAbstract="false" name="getPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="892" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="894" isRoot="false" value="" type="893" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="895" isRoot="false" value="" type="893" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="896" isRoot="false" value="" type="893" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="897" isRoot="false" value="" type="893" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="898" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="899" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="900" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="901" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="902" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="903" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="904" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="905" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="906" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="907" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="908" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="909" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="910" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="911" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="912" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="913" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="914" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="915" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="916" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="917" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="918" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="919" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="920" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="921" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="922" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="923" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12560" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="924" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="925" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="926" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12561" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="927" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="928" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="929" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12562" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="930" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="931" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="932" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="933" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="934" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="935" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="936" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="937" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12563" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="938" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12564" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="939" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12565" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="940" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12566" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="941" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12567" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="942" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12568" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="943" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="944" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="945" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12569" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="946" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="947" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="948" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12570" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="949" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="950" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="951" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="952" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="953" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="954" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="955" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="956" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12571" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="957" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="958" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="959" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="960" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="961" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="962" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="963" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="964" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="965" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="966" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="967" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="968" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="969" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="970" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="971" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="972" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="973" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="974" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="975" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="976" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="977" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="978" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="979" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="980" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="981" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="982" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="983" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="984" isRoot="false" isAbstract="false" name="compositeMultiply" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="985" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="986" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="987" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="988" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="989" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="990" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="991" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="992" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="993" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="994" isRoot="false" isAbstract="false" name="compositeDivide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="995" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="996" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="997" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="998" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="999" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1000" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1001" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1002" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1003" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1004" isRoot="false" isAbstract="false" name="compositeScreen" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1005" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1006" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1007" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1008" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1009" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1010" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1011" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1012" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1013" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1014" isRoot="false" isAbstract="false" name="compositeOverlay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1015" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1016" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1017" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1018" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1019" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1020" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1021" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1022" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1023" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1024" isRoot="false" isAbstract="false" name="compositeDodge" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1025" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1026" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1027" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1028" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1029" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1030" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1031" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1032" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1033" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1034" isRoot="false" isAbstract="false" name="compositeBurn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1035" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1036" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1037" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1038" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1039" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1040" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1041" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1042" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1043" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1044" isRoot="false" isAbstract="false" name="compositeDarken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1045" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1046" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1047" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1048" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1049" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1050" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1051" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1052" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1053" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1054" isRoot="false" isAbstract="false" name="compositeLighten" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1055" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1056" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1057" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1058" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1059" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1060" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1061" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1062" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1063" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1064" isRoot="false" isAbstract="false" name="compositeHue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1065" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1066" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1067" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1068" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1069" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1070" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1071" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1072" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1073" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1074" isRoot="false" isAbstract="false" name="compositeSaturation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1075" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1076" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1077" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1078" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1079" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1080" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1081" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1082" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1083" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1084" isRoot="false" isAbstract="false" name="compositeValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1085" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1086" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1087" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1088" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1089" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1090" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1091" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1092" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1093" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1094" isRoot="false" isAbstract="false" name="compositeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1095" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1096" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1097" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1098" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1099" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1100" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1101" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1102" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1103" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1104" isRoot="false" isAbstract="false" name="compositeErase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1105" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1106" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1107" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1108" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1109" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1110" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1111" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1112" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1113" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1114" isRoot="false" isAbstract="false" name="compositeCopy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1115" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1116" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1117" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1118" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1119" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1120" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1121" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1122" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1123" isRoot="false" value="" type="6" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1124" isRoot="false" isAbstract="false" name="KisF32RgbColorSpaceTester" />
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1133" isRoot="false" isAbstract="false" name="KisF32RgbColorSpaceSP" />
+ <UML:Class comment=" Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>
+ Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1134" isRoot="false" isAbstract="false" name="KisRgbU16ColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1135" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="1138" isRoot="false" initialValue="" type="362" isAbstract="false" name="U16_OPACITY_OPAQUE" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="1139" isRoot="false" initialValue="" type="362" isAbstract="false" name="U16_OPACITY_TRANSPARENT" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1381" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1382" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_BLUE" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1383" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_GREEN" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1384" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_RED" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1385" isRoot="false" initialValue="" type="569" isAbstract="false" name="PIXEL_ALPHA" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1140" isRoot="false" isAbstract="false" name="KisRgbU16ColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1141" isRoot="false" isAbstract="false" name="~ KisRgbU16ColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1142" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1143" isRoot="false" value="" type="78" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1144" isRoot="false" value="" type="150" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1145" isRoot="false" value="" type="150" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1146" isRoot="false" value="" type="150" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1147" isRoot="false" value="" type="150" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1148" isRoot="false" isAbstract="false" name="getPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1149" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1150" isRoot="false" value="" type="151" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1151" isRoot="false" value="" type="151" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1152" isRoot="false" value="" type="151" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1153" isRoot="false" value="" type="151" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1154" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1155" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1156" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1157" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1158" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1159" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1160" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1161" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1162" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1163" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1164" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1165" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1166" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1167" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1168" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1169" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1170" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1171" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1172" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1173" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1174" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1175" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1176" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1177" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1178" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1179" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12572" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1180" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1181" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1182" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12573" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1183" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1184" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1185" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12574" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1186" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1187" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1188" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1189" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1190" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1191" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1192" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1193" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12575" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1194" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12576" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1195" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12577" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1196" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12578" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1197" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12579" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1198" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12580" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1199" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1200" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1201" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12581" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1202" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1203" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1204" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12582" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1205" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1206" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1207" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1208" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1209" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1210" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1211" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1212" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12583" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1213" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1214" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1215" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1216" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1217" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1218" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1219" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1220" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1221" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1222" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1223" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1224" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1225" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1226" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1227" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1228" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1229" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1230" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1231" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1232" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1233" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1234" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1235" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1236" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1237" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1238" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1239" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1240" isRoot="false" isAbstract="false" name="compositeMultiply" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1241" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1242" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1243" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1244" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1245" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1246" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1247" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1248" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1249" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1250" isRoot="false" isAbstract="false" name="compositeDivide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1251" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1252" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1253" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1254" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1255" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1256" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1257" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1258" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1259" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1260" isRoot="false" isAbstract="false" name="compositeScreen" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1261" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1262" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1263" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1264" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1265" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1266" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1267" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1268" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1269" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1270" isRoot="false" isAbstract="false" name="compositeOverlay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1271" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1272" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1273" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1274" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1275" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1276" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1277" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1278" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1279" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1280" isRoot="false" isAbstract="false" name="compositeDodge" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1281" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1282" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1283" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1284" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1285" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1286" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1287" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1288" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1289" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1290" isRoot="false" isAbstract="false" name="compositeBurn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1291" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1292" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1293" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1294" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1295" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1296" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1297" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1298" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1299" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1300" isRoot="false" isAbstract="false" name="compositeDarken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1301" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1302" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1303" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1304" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1305" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1306" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1307" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1308" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1309" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1310" isRoot="false" isAbstract="false" name="compositeLighten" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1311" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1312" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1313" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1314" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1315" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1316" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1317" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1318" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1319" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1320" isRoot="false" isAbstract="false" name="compositeHue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1321" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1322" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1323" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1324" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1325" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1326" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1327" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1328" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1329" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1330" isRoot="false" isAbstract="false" name="compositeSaturation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1331" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1332" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1333" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1334" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1335" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1336" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1337" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1338" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1339" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1340" isRoot="false" isAbstract="false" name="compositeValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1341" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1342" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1343" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1344" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1345" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1346" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1347" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1348" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1349" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1350" isRoot="false" isAbstract="false" name="compositeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1351" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1352" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1353" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1354" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1355" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1356" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1357" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1358" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1359" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1360" isRoot="false" isAbstract="false" name="compositeErase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1361" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1362" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1363" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1364" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1365" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1366" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1367" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1368" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1369" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1370" isRoot="false" isAbstract="false" name="compositeCopy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1371" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1372" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1373" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1374" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1375" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1376" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1377" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1378" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1379" isRoot="false" value="" type="150" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1380" isRoot="false" isAbstract="false" name="KisRgbU16ColorSpaceTester" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1386" isRoot="false" isAbstract="false" name="KisRgbColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1387" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1638" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1390" isRoot="false" isAbstract="false" name="KisRgbColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1391" isRoot="false" isAbstract="false" name="~ KisRgbColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1392" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1393" isRoot="false" value="" type="78" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1394" isRoot="false" value="" type="53" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1395" isRoot="false" value="" type="53" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1396" isRoot="false" value="" type="53" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1397" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1398" isRoot="false" isAbstract="false" name="getPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1399" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1400" isRoot="false" value="" type="78" isAbstract="false" name="red" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1401" isRoot="false" value="" type="78" isAbstract="false" name="green" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1402" isRoot="false" value="" type="78" isAbstract="false" name="blue" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1403" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1404" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1405" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1406" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1407" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1408" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1409" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1410" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1411" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1412" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1413" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1414" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1415" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1416" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1417" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1418" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1419" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1420" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1421" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1422" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1423" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1424" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1425" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1426" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1427" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1428" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1429" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12584" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1430" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1431" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1432" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12585" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1433" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1434" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1435" isRoot="false" isAbstract="false" name="difference" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12586" type="163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1436" isRoot="false" value="" type="54" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1437" isRoot="false" value="" type="54" isAbstract="false" name="src2" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1438" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1439" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1440" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1441" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1442" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1443" isRoot="false" isAbstract="false" name="convolveColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1444" isRoot="false" value="" type="171" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1445" isRoot="false" value="" type="173" isAbstract="false" name="kernelValues" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1446" isRoot="false" value="" type="175" isAbstract="false" name="channelFlags" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1447" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1448" isRoot="false" value="" type="44" isAbstract="false" name="factor" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1449" isRoot="false" value="" type="44" isAbstract="false" name="offset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1450" isRoot="false" value="" type="44" isAbstract="false" name="nColors" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1451" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12587" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1452" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12588" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1453" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12589" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1454" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12590" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1455" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12591" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1456" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12592" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1457" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1458" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1459" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12593" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1460" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1461" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1462" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12594" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1463" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1464" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1465" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1466" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1467" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1468" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1469" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1470" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12595" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1471" isRoot="false" isAbstract="false" name="createBrightnessContrastAdjustment" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12596" type="154" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1472" isRoot="false" value="" type="151" isAbstract="false" name="transferValues" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1473" isRoot="false" isAbstract="false" name="applyAdjustment" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1474" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1475" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1476" isRoot="false" value="" type="154" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1477" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Darken all color channels with the given amount. If compensate is true,
+the compensation factor will be used to limit the darkening.
+
+(See the bumpmap filter)" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1478" isRoot="false" isAbstract="false" name="darken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1479" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1480" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1481" isRoot="false" value="" type="44" isAbstract="false" name="shade" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1482" isRoot="false" value="" type="49" isAbstract="false" name="compensate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1483" isRoot="false" value="" type="7" isAbstract="false" name="compensation" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1484" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1485" isRoot="false" isAbstract="false" name="intensity8" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12597" type="53" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1486" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1487" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1488" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1489" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1490" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1491" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1492" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1493" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1494" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1495" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1496" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1497" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1498" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1499" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1500" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1501" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1502" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1503" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1504" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1505" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1506" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1507" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1508" isRoot="false" isAbstract="false" name="compositeMultiply" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1509" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1510" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1511" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1512" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1513" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1514" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1515" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1516" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1517" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1518" isRoot="false" isAbstract="false" name="compositeDivide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1519" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1520" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1521" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1522" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1523" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1524" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1525" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1526" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1527" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1528" isRoot="false" isAbstract="false" name="compositeScreen" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1529" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1530" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1531" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1532" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1533" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1534" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1535" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1536" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1537" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1538" isRoot="false" isAbstract="false" name="compositeOverlay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1539" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1540" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1541" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1542" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1543" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1544" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1545" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1546" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1547" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1548" isRoot="false" isAbstract="false" name="compositeDodge" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1549" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1550" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1551" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1552" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1553" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1554" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1555" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1556" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1557" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1558" isRoot="false" isAbstract="false" name="compositeBurn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1559" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1560" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1561" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1562" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1563" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1564" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1565" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1566" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1567" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1568" isRoot="false" isAbstract="false" name="compositeDarken" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1569" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1570" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1571" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1572" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1573" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1574" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1575" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1576" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1577" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1578" isRoot="false" isAbstract="false" name="compositeLighten" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1579" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1580" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1581" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1582" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1583" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1584" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1585" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1586" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1587" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1588" isRoot="false" isAbstract="false" name="compositeHue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1589" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1590" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1591" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1592" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1593" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1594" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1595" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1596" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1597" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1598" isRoot="false" isAbstract="false" name="compositeSaturation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1599" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1600" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1601" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1602" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1603" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1604" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1605" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1606" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1607" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1608" isRoot="false" isAbstract="false" name="compositeValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1609" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1610" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1611" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1612" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1613" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1614" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1615" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1616" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1617" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1618" isRoot="false" isAbstract="false" name="compositeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1619" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1620" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1621" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1622" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1623" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1624" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1625" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1626" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1627" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1628" isRoot="false" isAbstract="false" name="compositeErase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1629" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1630" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1631" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1632" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1633" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1634" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1635" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1636" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1637" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1639" isRoot="false" isAbstract="false" name="WetPix" />
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1640" isRoot="false" isAbstract="false" name="WetPixDbl" />
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1641" isRoot="false" isAbstract="false" name="WetPack" />
+ <UML:Class comment="White is made up of myth-red, myth-green, and myth-blue. Myth-red
+looks red when viewed reflectively, but cyan when viewed
+transmissively (thus, it vaguely resembles a dichroic
+filter). Myth-red over black is red, and myth-red over white is
+white.
+
+Total red channel concentration is myth-red concentration plus
+cyan concentration." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1642" isRoot="false" isAbstract="false" name="_WetPix" >
+ <UML:Classifier.feature>
+ <UML:Attribute comment="Total red channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1643" isRoot="false" initialValue="" type="150" isAbstract="false" name="rd" />
+ <UML:Attribute comment="Myth-red concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1644" isRoot="false" initialValue="" type="150" isAbstract="false" name="rw" />
+ <UML:Attribute comment="Total green channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1645" isRoot="false" initialValue="" type="150" isAbstract="false" name="gd" />
+ <UML:Attribute comment="Myth-green concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1646" isRoot="false" initialValue="" type="150" isAbstract="false" name="gw" />
+ <UML:Attribute comment="Total blue channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1647" isRoot="false" initialValue="" type="150" isAbstract="false" name="bd" />
+ <UML:Attribute comment="Myth-blue concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1648" isRoot="false" initialValue="" type="150" isAbstract="false" name="bw" />
+ <UML:Attribute comment="Water volume" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1649" isRoot="false" initialValue="" type="150" isAbstract="false" name="w" />
+ <UML:Attribute comment="Height of paper surface XXX: This might just as well be a single
+channel in our colour model that has two of
+these wetpix structs for every paint device pixel" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1650" isRoot="false" initialValue="" type="150" isAbstract="false" name="h" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1651" isRoot="false" isAbstract="false" name="_WetPack" >
+ <UML:Classifier.feature>
+ <UML:Attribute comment="Paint layer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1652" isRoot="false" initialValue="" type="1639" isAbstract="false" name="paint" />
+ <UML:Attribute comment="Adsorbtion layer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1653" isRoot="false" initialValue="" type="1639" isAbstract="false" name="adsorb" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1654" isRoot="false" isAbstract="false" name="_WetPixDbl" >
+ <UML:Classifier.feature>
+ <UML:Attribute comment="Total red channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1655" isRoot="false" initialValue="" type="7" isAbstract="false" name="rd" />
+ <UML:Attribute comment="Myth-red concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1656" isRoot="false" initialValue="" type="7" isAbstract="false" name="rw" />
+ <UML:Attribute comment="Total green channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1657" isRoot="false" initialValue="" type="7" isAbstract="false" name="gd" />
+ <UML:Attribute comment="Myth-green concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1658" isRoot="false" initialValue="" type="7" isAbstract="false" name="gw" />
+ <UML:Attribute comment="Total blue channel concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1659" isRoot="false" initialValue="" type="7" isAbstract="false" name="bd" />
+ <UML:Attribute comment="Myth-blue concentration" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1660" isRoot="false" initialValue="" type="7" isAbstract="false" name="bw" />
+ <UML:Attribute comment="Water volume" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1661" isRoot="false" initialValue="" type="7" isAbstract="false" name="w" />
+ <UML:Attribute comment="Height of paper surface" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1662" isRoot="false" initialValue="" type="7" isAbstract="false" name="h" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1663" isRoot="false" isAbstract="false" name="KisWetColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1664" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1755" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1757" isRoot="false" initialValue="" type="1756" isAbstract="false" name="wet_render_tab" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1758" isRoot="false" initialValue="" type="226" isAbstract="false" name="m_paintNames" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1760" isRoot="false" initialValue="" type="1759" isAbstract="false" name="m_conversionMap" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1761" isRoot="false" initialValue="" type="49" isAbstract="false" name="m_paintwetness" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1762" isRoot="false" initialValue="" type="2" isAbstract="false" name="phase" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1763" isRoot="false" initialValue="" type="2" isAbstract="false" name="phasebig" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1667" isRoot="false" isAbstract="false" name="KisWetColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1668" isRoot="false" isAbstract="false" name="~ KisWetColorSpace" />
+ <UML:Operation comment="// Semi-clever: we have only fifteen wet paint colors that are mapped to the// qcolors that are put in the painter by the special wet paint palette. Other// QColors are mapped to plain water..." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1669" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1670" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1671" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1672" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1673" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1674" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1675" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1676" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1677" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1678" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1679" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1680" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1681" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1682" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1683" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1684" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1685" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1686" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1687" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1688" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1689" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1690" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12598" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1691" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1692" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1693" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12599" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1694" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1695" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1696" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1697" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1698" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1699" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1700" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1701" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12600" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1702" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12601" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1703" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12602" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1704" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12603" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1705" isRoot="false" isAbstract="false" name="nSubstanceChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12604" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1706" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12605" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1707" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12606" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1708" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1709" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1710" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12607" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1711" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1712" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1713" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12608" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1714" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1715" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1716" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1717" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1718" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1719" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1720" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1721" isRoot="false" isAbstract="false" name="adjustBrightness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1722" isRoot="false" value="" type="78" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1723" isRoot="false" value="" type="163" isAbstract="false" name="adjust" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1724" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1725" isRoot="false" value="" type="54" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1726" isRoot="false" value="" type="78" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1727" isRoot="false" value="" type="163" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1728" isRoot="false" value="" type="163" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1729" isRoot="false" value="" type="44" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1730" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12609" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1731" isRoot="false" isAbstract="false" name="setPaintWetness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1732" isRoot="false" value="" type="49" isAbstract="false" name="b" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1733" isRoot="false" isAbstract="false" name="paintWetness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12610" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1734" isRoot="false" isAbstract="false" name="resetPhase" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1735" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1736" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1737" isRoot="false" value="" type="44" isAbstract="false" name="dstRowSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1738" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1739" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1740" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1741" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1742" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1743" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1744" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1745" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// This was static, but since we have only one instance of the color strategy,// it can be just as well a private member variable." isSpecification="false" isLeaf="false" visibility="private" xmi.id="1746" isRoot="false" isAbstract="false" name="wet_init_render_tab" />
+ <UML:Operation comment="// Convert a single pixel from its wet representation to rgb" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1747" isRoot="false" isAbstract="false" name="wet_composite" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1748" isRoot="false" value="" type="78" isAbstract="false" name="rgb" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1750" isRoot="false" value="" type="1749" isAbstract="false" name="wet" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1751" isRoot="false" isAbstract="false" name="wet_render_wetness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1752" isRoot="false" value="" type="78" isAbstract="false" name="rgb" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1754" isRoot="false" value="" type="1753" isAbstract="false" name="pack" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1759" isRoot="false" isAbstract="false" name="QMap" />
+ <UML:Package comment=" Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1764" isRoot="false" isAbstract="false" name="WetAndSticky" >
+ <UML:Namespace.ownedElement>
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1773" isRoot="false" isAbstract="false" name="CELL_PTR" elementReference="1772" />
+ <UML:Enumeration stereotype="1766" comment="A color is specified as a vector in HLS space. Hue is a value
+in the range 0..360 degrees with 0 degrees being red. Saturation
+and Lightness are both in the range [0,1]. A lightness of 0 means
+black, with 1 being white. A totally saturated color has saturation
+of 1." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1765" isRoot="false" isAbstract="false" name="enumDirection" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="1767" isRoot="false" isAbstract="false" name="UP" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="1768" isRoot="false" isAbstract="false" name="DOWN" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="1769" isRoot="false" isAbstract="false" name="LEFT" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="1770" isRoot="false" isAbstract="false" name="RIGHT" />
+ </UML:Enumeration>
+ <UML:Class stereotype="16" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1771" isRoot="false" isAbstract="false" name="CELL" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1772" isRoot="false" isAbstract="false" name="cell" />
+ </UML:Namespace.ownedElement>
+ </UML:Package>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1774" isRoot="false" isAbstract="false" name="KisWetStickyColorSpace" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1775" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1895" isRoot="false" initialValue="" type="42" isAbstract="false" name="m_channels" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1778" isRoot="false" isAbstract="false" name="KisWetStickyColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1779" isRoot="false" isAbstract="false" name="~ KisWetStickyColorSpace" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1780" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1781" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1782" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1783" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1784" isRoot="false" isAbstract="false" name="nativeColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1785" isRoot="false" value="" type="76" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1786" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1787" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1788" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1789" isRoot="false" isAbstract="false" name="getAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1790" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1791" isRoot="false" value="" type="78" isAbstract="false" name="alpha" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1792" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1793" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1794" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1795" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1796" isRoot="false" isAbstract="false" name="toQColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1797" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1798" isRoot="false" value="" type="90" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1799" isRoot="false" value="" type="96" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1800" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1801" isRoot="false" isAbstract="false" name="toKisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12611" type="14" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1802" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1803" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1804" isRoot="false" isAbstract="false" name="toKisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12612" type="13" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1805" isRoot="false" value="" type="78" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1806" isRoot="false" value="" type="80" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1807" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12613" type="42" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1808" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12614" type="49" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1809" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12615" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1810" isRoot="false" isAbstract="false" name="nColorChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12616" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1811" isRoot="false" isAbstract="false" name="nSubstanceChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12617" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1812" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12618" type="44" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1813" isRoot="false" isAbstract="false" name="channelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12619" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1814" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1815" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1816" isRoot="false" isAbstract="false" name="normalisedChannelValueText" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12620" type="57" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1817" isRoot="false" value="" type="54" isAbstract="false" name="pixel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1818" isRoot="false" value="" type="20" isAbstract="false" name="channelIndex" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1819" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12621" type="121" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1820" isRoot="false" value="" type="54" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1821" isRoot="false" value="" type="44" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1822" isRoot="false" value="" type="44" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1823" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1824" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1825" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1826" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1827" isRoot="false" isAbstract="false" name="adjustBrightness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1828" isRoot="false" value="" type="78" isAbstract="false" name="src1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1829" isRoot="false" value="" type="163" isAbstract="false" name="adjust" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1830" isRoot="false" isAbstract="false" name="adjustBrightnessContrast" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1831" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1832" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1833" isRoot="false" value="" type="163" isAbstract="false" name="brightness" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1834" isRoot="false" value="" type="163" isAbstract="false" name="contrast" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1835" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1836" isRoot="false" isAbstract="false" name="mixColors" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1837" isRoot="false" value="" type="165" isAbstract="false" name="colors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1838" isRoot="false" value="" type="54" isAbstract="false" name="weights" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1839" isRoot="false" value="" type="20" isAbstract="false" name="nColors" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1840" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1841" isRoot="false" isAbstract="false" name="setAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1842" isRoot="false" value="" type="78" isAbstract="false" name="pixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1843" isRoot="false" value="" type="53" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1844" isRoot="false" value="" type="44" isAbstract="false" name="nPixels" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1845" isRoot="false" isAbstract="false" name="userVisiblecompositeOps" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12622" type="69" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1846" isRoot="false" isAbstract="false" name="bitBlt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1847" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1848" isRoot="false" value="" type="44" isAbstract="false" name="dstRowSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1849" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1850" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1851" isRoot="false" value="" type="54" isAbstract="false" name="srcAlphaMask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1852" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1853" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1854" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1855" isRoot="false" value="" type="44" isAbstract="false" name="cols" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1856" isRoot="false" value="" type="202" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1857" isRoot="false" isAbstract="false" name="convertPixelsTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="12623" type="49" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1858" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1859" isRoot="false" value="" type="80" isAbstract="false" name="srcProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1860" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1861" isRoot="false" value="" type="126" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1862" isRoot="false" value="" type="80" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1863" isRoot="false" value="" type="20" isAbstract="false" name="numPixels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1864" isRoot="false" value="" type="44" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1865" isRoot="false" isAbstract="false" name="compositeOver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1866" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1867" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1868" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1869" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1870" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1871" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1872" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1873" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1874" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1875" isRoot="false" isAbstract="false" name="compositeClear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1876" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1877" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1878" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1879" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1880" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1881" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1882" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1883" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1884" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1885" isRoot="false" isAbstract="false" name="compositeCopy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1886" isRoot="false" value="" type="78" isAbstract="false" name="dst" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1887" isRoot="false" value="" type="44" isAbstract="false" name="dstRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1888" isRoot="false" value="" type="54" isAbstract="false" name="src" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1889" isRoot="false" value="" type="44" isAbstract="false" name="srcRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1890" isRoot="false" value="" type="54" isAbstract="false" name="tqmask" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1891" isRoot="false" value="" type="44" isAbstract="false" name="tqmaskRowStride" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1892" isRoot="false" value="" type="44" isAbstract="false" name="rows" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1893" isRoot="false" value="" type="44" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1894" isRoot="false" value="" type="84" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Interface stereotype="12051" isSpecification="false" isLeaf="false" visibility="public" xmi.id="12050" isRoot="false" isAbstract="true" name="KisColorSpaceDescriptor" />
+ <UML:Generalization isSpecification="false" child="26" visibility="public" xmi.id="28" tqparent="27" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="247" visibility="public" xmi.id="248" tqparent="26" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="255" visibility="public" xmi.id="256" tqparent="247" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="350" visibility="public" xmi.id="351" tqparent="26" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="358" visibility="public" xmi.id="359" tqparent="26" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="369" visibility="public" xmi.id="370" tqparent="358" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="575" visibility="public" xmi.id="576" tqparent="247" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="669" visibility="public" xmi.id="670" tqparent="247" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="863" visibility="public" xmi.id="866" tqparent="865" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="879" visibility="public" xmi.id="880" tqparent="350" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1134" visibility="public" xmi.id="1135" tqparent="358" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1386" visibility="public" xmi.id="1387" tqparent="247" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1663" visibility="public" xmi.id="1664" tqparent="26" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1774" visibility="public" xmi.id="1775" tqparent="26" discriminator="" name="" />
+ </UML:Namespace.ownedElement>
+ </UML:Model>
+ </XMI.content>
+ <XMI.extensions xmi.extender="umbrello" >
+ <docsettings viewid="1" documentation="" uniqueid="12623" />
+ <diagrams>
+ <diagram snapgrid="1" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="75" showgrid="1" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="1661" snapy="10" showatts="1" xmi.id="1" documentation="" type="402" showops="1" showpackage="0" name="class diagram" localid="900000" showstereotype="0" showscope="1" snapcsgrid="0" font="Bitstream Vera Sans,11,-1,5,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="1375" >
+ <widgets>
+ <classwidget usesdiagramfillcolour="1" width="201" showattsigs="601" usesdiagramusefillcolour="1" x="460" linecolour="none" y="68" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="1" showattributes="0" isinstance="0" xmi.id="26" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="178" showattsigs="601" usesdiagramusefillcolour="1" x="801" linecolour="none" y="761" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="255" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="176" showattsigs="601" usesdiagramusefillcolour="1" x="992" linecolour="none" y="761" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="575" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="199" showattsigs="601" usesdiagramusefillcolour="1" x="61" linecolour="none" y="292" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="37" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="350" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="193" showattsigs="601" usesdiagramusefillcolour="1" x="24" linecolour="none" y="421" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="879" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="168" showattsigs="601" usesdiagramusefillcolour="1" x="616" linecolour="none" y="761" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="669" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="163" showattsigs="601" usesdiagramusefillcolour="1" x="439" linecolour="none" y="761" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="1386" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="195" showattsigs="601" usesdiagramusefillcolour="1" x="123" linecolour="none" y="581" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="1134" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="201" showattsigs="601" usesdiagramusefillcolour="1" x="306" linecolour="none" y="288" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="358" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="191" showattsigs="601" usesdiagramusefillcolour="1" x="526" linecolour="none" y="287" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="247" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="163" showattsigs="601" usesdiagramusefillcolour="1" x="959" linecolour="none" y="291" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="1663" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="215" showattsigs="601" usesdiagramusefillcolour="1" x="733" linecolour="none" y="291" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="1774" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="160" showattsigs="601" usesdiagramusefillcolour="1" x="340" linecolour="none" y="581" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="38" usefillcolor="1" showpubliconly="0" showattributes="0" isinstance="0" xmi.id="369" showoperations="0" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ </widgets>
+ <messages/>
+ <associations>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="1" widgetbid="26" widgetaid="350" xmi.id="351" >
+ <linepath>
+ <startpoint startx="160" starty="292" />
+ <endpoint endx="490" endy="106" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" widgetbid="350" widgetaid="879" xmi.id="880" >
+ <linepath>
+ <startpoint startx="120" starty="421" />
+ <endpoint endx="160" endy="329" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="2" widgetbid="26" widgetaid="358" xmi.id="359" >
+ <linepath>
+ <startpoint startx="406" starty="288" />
+ <endpoint endx="530" endy="106" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="3" indexb="1" widgetbid="358" widgetaid="1134" xmi.id="1135" >
+ <linepath>
+ <startpoint startx="220" starty="581" />
+ <endpoint endx="370" endy="326" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="3" widgetbid="26" widgetaid="247" xmi.id="248" >
+ <linepath>
+ <startpoint startx="621" starty="287" />
+ <endpoint endx="560" endy="106" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="5" indexb="3" widgetbid="247" widgetaid="255" xmi.id="256" >
+ <linepath>
+ <startpoint startx="890" starty="761" />
+ <endpoint endx="640" endy="325" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="5" indexb="4" widgetbid="247" widgetaid="575" xmi.id="576" >
+ <linepath>
+ <startpoint startx="1080" starty="761" />
+ <endpoint endx="680" endy="325" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="5" indexb="2" widgetbid="247" widgetaid="669" xmi.id="670" >
+ <linepath>
+ <startpoint startx="700" starty="761" />
+ <endpoint endx="600" endy="325" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="5" indexb="1" widgetbid="247" widgetaid="1386" xmi.id="1387" >
+ <linepath>
+ <startpoint startx="520" starty="761" />
+ <endpoint endx="560" endy="325" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="5" widgetbid="26" widgetaid="1663" xmi.id="1664" >
+ <linepath>
+ <startpoint startx="1040" starty="291" />
+ <endpoint endx="630" endy="106" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="4" widgetbid="26" widgetaid="1774" xmi.id="1775" >
+ <linepath>
+ <startpoint startx="840" starty="291" />
+ <endpoint endx="590" endy="106" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="3" indexb="2" widgetbid="358" widgetaid="369" xmi.id="370" >
+ <linepath>
+ <startpoint startx="420" starty="581" />
+ <endpoint endx="440" endy="326" />
+ </linepath>
+ </assocwidget>
+ </associations>
+ </diagram>
+ </diagrams>
+ <listview>
+ <listitem open="1" type="800" label="Views" >
+ <listitem open="1" type="801" label="Logical View" >
+ <listitem open="0" type="813" id="36" />
+ <listitem open="0" type="813" id="864" >
+ <listitem open="0" type="813" id="865" />
+ </listitem>
+ <listitem open="0" type="813" id="27" />
+ <listitem open="0" type="813" id="26" >
+ <listitem open="0" type="813" id="237" />
+ <listitem open="0" type="814" id="227" />
+ <listitem open="0" type="814" id="228" />
+ <listitem open="0" type="814" id="229" />
+ <listitem open="0" type="814" id="230" />
+ <listitem open="0" type="814" id="231" />
+ <listitem open="0" type="814" id="232" />
+ <listitem open="0" type="814" id="233" />
+ <listitem open="0" type="814" id="234" />
+ <listitem open="0" type="814" id="235" />
+ <listitem open="0" type="814" id="236" />
+ <listitem open="0" type="814" id="238" />
+ <listitem open="0" type="814" id="245" />
+ <listitem open="0" type="814" id="246" />
+ <listitem open="0" type="815" id="31" />
+ <listitem open="0" type="815" id="40" />
+ <listitem open="0" type="815" id="41" />
+ <listitem open="0" type="815" id="43" />
+ <listitem open="0" type="815" id="45" />
+ <listitem open="0" type="815" id="46" />
+ <listitem open="0" type="815" id="47" />
+ <listitem open="0" type="815" id="48" />
+ <listitem open="0" type="815" id="50" />
+ <listitem open="0" type="815" id="51" />
+ <listitem open="0" type="815" id="52" />
+ <listitem open="0" type="815" id="58" />
+ <listitem open="0" type="815" id="61" />
+ <listitem open="0" type="815" id="62" />
+ <listitem open="0" type="815" id="64" />
+ <listitem open="0" type="815" id="65" />
+ <listitem open="0" type="815" id="67" />
+ <listitem open="0" type="815" id="68" />
+ <listitem open="0" type="815" id="70" />
+ <listitem open="0" type="815" id="71" />
+ <listitem open="0" type="815" id="73" />
+ <listitem open="0" type="815" id="74" />
+ <listitem open="0" type="815" id="82" />
+ <listitem open="0" type="815" id="88" />
+ <listitem open="0" type="815" id="93" />
+ <listitem open="0" type="815" id="99" />
+ <listitem open="0" type="815" id="102" />
+ <listitem open="0" type="815" id="105" />
+ <listitem open="0" type="815" id="108" />
+ <listitem open="0" type="815" id="113" />
+ <listitem open="0" type="815" id="122" />
+ <listitem open="0" type="815" id="131" />
+ <listitem open="0" type="815" id="134" />
+ <listitem open="0" type="815" id="137" />
+ <listitem open="0" type="815" id="141" />
+ <listitem open="0" type="815" id="145" />
+ <listitem open="0" type="815" id="149" />
+ <listitem open="0" type="815" id="155" />
+ <listitem open="0" type="815" id="160" />
+ <listitem open="0" type="815" id="164" />
+ <listitem open="0" type="815" id="170" />
+ <listitem open="0" type="815" id="181" />
+ <listitem open="0" type="815" id="188" />
+ <listitem open="0" type="815" id="190" />
+ <listitem open="0" type="815" id="206" />
+ <listitem open="0" type="815" id="217" />
+ <listitem open="0" type="815" id="223" />
+ <listitem open="0" type="815" id="224" />
+ <listitem open="0" type="815" id="239" />
+ <listitem open="0" type="815" id="242" />
+ </listitem>
+ <listitem open="0" type="813" id="255" >
+ <listitem open="0" type="814" id="349" />
+ <listitem open="0" type="815" id="259" />
+ <listitem open="0" type="815" id="260" />
+ <listitem open="0" type="815" id="261" />
+ <listitem open="0" type="815" id="265" />
+ <listitem open="0" type="815" id="270" />
+ <listitem open="0" type="815" id="273" />
+ <listitem open="0" type="815" id="277" />
+ <listitem open="0" type="815" id="282" />
+ <listitem open="0" type="815" id="285" />
+ <listitem open="0" type="815" id="288" />
+ <listitem open="0" type="815" id="291" />
+ <listitem open="0" type="815" id="296" />
+ <listitem open="0" type="815" id="297" />
+ <listitem open="0" type="815" id="298" />
+ <listitem open="0" type="815" id="299" />
+ <listitem open="0" type="815" id="300" />
+ <listitem open="0" type="815" id="301" />
+ <listitem open="0" type="815" id="304" />
+ <listitem open="0" type="815" id="307" />
+ <listitem open="0" type="815" id="315" />
+ <listitem open="0" type="815" id="321" />
+ <listitem open="0" type="815" id="329" />
+ <listitem open="0" type="815" id="337" />
+ <listitem open="0" type="815" id="348" />
+ </listitem>
+ <listitem open="0" type="813" id="575" >
+ <listitem open="0" type="814" id="660" />
+ <listitem open="0" type="814" id="661" />
+ <listitem open="0" type="814" id="662" />
+ <listitem open="0" type="814" id="663" />
+ <listitem open="0" type="814" id="664" />
+ <listitem open="0" type="814" id="665" />
+ <listitem open="0" type="814" id="666" />
+ <listitem open="0" type="814" id="667" />
+ <listitem open="0" type="814" id="668" />
+ <listitem open="0" type="815" id="579" />
+ <listitem open="0" type="815" id="580" />
+ <listitem open="0" type="815" id="581" />
+ <listitem open="0" type="815" id="585" />
+ <listitem open="0" type="815" id="590" />
+ <listitem open="0" type="815" id="593" />
+ <listitem open="0" type="815" id="597" />
+ <listitem open="0" type="815" id="601" />
+ <listitem open="0" type="815" id="606" />
+ <listitem open="0" type="815" id="609" />
+ <listitem open="0" type="815" id="612" />
+ <listitem open="0" type="815" id="617" />
+ <listitem open="0" type="815" id="618" />
+ <listitem open="0" type="815" id="619" />
+ <listitem open="0" type="815" id="620" />
+ <listitem open="0" type="815" id="621" />
+ <listitem open="0" type="815" id="622" />
+ <listitem open="0" type="815" id="625" />
+ <listitem open="0" type="815" id="628" />
+ <listitem open="0" type="815" id="636" />
+ <listitem open="0" type="815" id="639" />
+ <listitem open="0" type="815" id="650" />
+ <listitem open="0" type="815" id="651" />
+ <listitem open="0" type="815" id="652" />
+ </listitem>
+ <listitem open="0" type="813" id="153" />
+ <listitem open="0" type="813" id="201" />
+ <listitem open="0" type="813" id="69" />
+ <listitem open="0" type="813" id="350" >
+ <listitem open="0" type="815" id="354" />
+ </listitem>
+ <listitem open="0" type="813" id="879" >
+ <listitem open="0" type="814" id="1125" />
+ <listitem open="0" type="814" id="1126" />
+ <listitem open="0" type="814" id="1127" />
+ <listitem open="0" type="814" id="1128" />
+ <listitem open="0" type="814" id="1129" />
+ <listitem open="0" type="815" id="883" />
+ <listitem open="0" type="815" id="884" />
+ <listitem open="0" type="815" id="885" />
+ <listitem open="0" type="815" id="891" />
+ <listitem open="0" type="815" id="898" />
+ <listitem open="0" type="815" id="902" />
+ <listitem open="0" type="815" id="907" />
+ <listitem open="0" type="815" id="910" />
+ <listitem open="0" type="815" id="914" />
+ <listitem open="0" type="815" id="918" />
+ <listitem open="0" type="815" id="923" />
+ <listitem open="0" type="815" id="926" />
+ <listitem open="0" type="815" id="929" />
+ <listitem open="0" type="815" id="932" />
+ <listitem open="0" type="815" id="937" />
+ <listitem open="0" type="815" id="938" />
+ <listitem open="0" type="815" id="939" />
+ <listitem open="0" type="815" id="940" />
+ <listitem open="0" type="815" id="941" />
+ <listitem open="0" type="815" id="942" />
+ <listitem open="0" type="815" id="945" />
+ <listitem open="0" type="815" id="948" />
+ <listitem open="0" type="815" id="956" />
+ <listitem open="0" type="815" id="957" />
+ <listitem open="0" type="815" id="963" />
+ <listitem open="0" type="815" id="974" />
+ <listitem open="0" type="815" id="984" />
+ <listitem open="0" type="815" id="994" />
+ <listitem open="0" type="815" id="1004" />
+ <listitem open="0" type="815" id="1014" />
+ <listitem open="0" type="815" id="1024" />
+ <listitem open="0" type="815" id="1034" />
+ <listitem open="0" type="815" id="1044" />
+ <listitem open="0" type="815" id="1054" />
+ <listitem open="0" type="815" id="1064" />
+ <listitem open="0" type="815" id="1074" />
+ <listitem open="0" type="815" id="1084" />
+ <listitem open="0" type="815" id="1094" />
+ <listitem open="0" type="815" id="1104" />
+ <listitem open="0" type="815" id="1114" />
+ </listitem>
+ <listitem open="0" type="813" id="1133" />
+ <listitem open="0" type="813" id="1124" />
+ <listitem open="0" type="813" id="669" >
+ <listitem open="0" type="814" id="860" />
+ <listitem open="0" type="814" id="861" />
+ <listitem open="0" type="814" id="862" />
+ <listitem open="0" type="815" id="673" />
+ <listitem open="0" type="815" id="674" />
+ <listitem open="0" type="815" id="675" />
+ <listitem open="0" type="815" id="679" />
+ <listitem open="0" type="815" id="683" />
+ <listitem open="0" type="815" id="687" />
+ <listitem open="0" type="815" id="692" />
+ <listitem open="0" type="815" id="695" />
+ <listitem open="0" type="815" id="699" />
+ <listitem open="0" type="815" id="703" />
+ <listitem open="0" type="815" id="708" />
+ <listitem open="0" type="815" id="711" />
+ <listitem open="0" type="815" id="714" />
+ <listitem open="0" type="815" id="717" />
+ <listitem open="0" type="815" id="722" />
+ <listitem open="0" type="815" id="723" />
+ <listitem open="0" type="815" id="724" />
+ <listitem open="0" type="815" id="725" />
+ <listitem open="0" type="815" id="726" />
+ <listitem open="0" type="815" id="727" />
+ <listitem open="0" type="815" id="730" />
+ <listitem open="0" type="815" id="733" />
+ <listitem open="0" type="815" id="741" />
+ <listitem open="0" type="815" id="747" />
+ <listitem open="0" type="815" id="758" />
+ <listitem open="0" type="815" id="759" />
+ <listitem open="0" type="815" id="769" />
+ <listitem open="0" type="815" id="779" />
+ <listitem open="0" type="815" id="789" />
+ <listitem open="0" type="815" id="799" />
+ <listitem open="0" type="815" id="809" />
+ <listitem open="0" type="815" id="819" />
+ <listitem open="0" type="815" id="829" />
+ <listitem open="0" type="815" id="839" />
+ <listitem open="0" type="815" id="849" />
+ </listitem>
+ <listitem open="0" type="813" id="859" />
+ <listitem open="0" type="813" id="33" />
+ <listitem open="0" type="813" id="12" />
+ <listitem open="0" type="813" id="13" />
+ <listitem open="0" type="813" id="14" />
+ <listitem open="0" type="813" id="18" />
+ <listitem open="0" type="813" id="15" />
+ <listitem open="0" type="813" id="80" />
+ <listitem open="0" type="813" id="1386" >
+ <listitem open="0" type="814" id="1638" />
+ <listitem open="0" type="815" id="1390" />
+ <listitem open="0" type="815" id="1391" />
+ <listitem open="0" type="815" id="1392" />
+ <listitem open="0" type="815" id="1398" />
+ <listitem open="0" type="815" id="1404" />
+ <listitem open="0" type="815" id="1408" />
+ <listitem open="0" type="815" id="1413" />
+ <listitem open="0" type="815" id="1416" />
+ <listitem open="0" type="815" id="1420" />
+ <listitem open="0" type="815" id="1424" />
+ <listitem open="0" type="815" id="1429" />
+ <listitem open="0" type="815" id="1432" />
+ <listitem open="0" type="815" id="1435" />
+ <listitem open="0" type="815" id="1438" />
+ <listitem open="0" type="815" id="1443" />
+ <listitem open="0" type="815" id="1451" />
+ <listitem open="0" type="815" id="1452" />
+ <listitem open="0" type="815" id="1453" />
+ <listitem open="0" type="815" id="1454" />
+ <listitem open="0" type="815" id="1455" />
+ <listitem open="0" type="815" id="1456" />
+ <listitem open="0" type="815" id="1459" />
+ <listitem open="0" type="815" id="1462" />
+ <listitem open="0" type="815" id="1470" />
+ <listitem open="0" type="815" id="1471" />
+ <listitem open="0" type="815" id="1473" />
+ <listitem open="0" type="815" id="1478" />
+ <listitem open="0" type="815" id="1485" />
+ <listitem open="0" type="815" id="1487" />
+ <listitem open="0" type="815" id="1498" />
+ <listitem open="0" type="815" id="1508" />
+ <listitem open="0" type="815" id="1518" />
+ <listitem open="0" type="815" id="1528" />
+ <listitem open="0" type="815" id="1538" />
+ <listitem open="0" type="815" id="1548" />
+ <listitem open="0" type="815" id="1558" />
+ <listitem open="0" type="815" id="1568" />
+ <listitem open="0" type="815" id="1578" />
+ <listitem open="0" type="815" id="1588" />
+ <listitem open="0" type="815" id="1598" />
+ <listitem open="0" type="815" id="1608" />
+ <listitem open="0" type="815" id="1618" />
+ <listitem open="0" type="815" id="1628" />
+ </listitem>
+ <listitem open="0" type="813" id="1134" >
+ <listitem open="0" type="814" id="1138" />
+ <listitem open="0" type="814" id="1139" />
+ <listitem open="0" type="814" id="1381" />
+ <listitem open="0" type="814" id="1382" />
+ <listitem open="0" type="814" id="1383" />
+ <listitem open="0" type="814" id="1384" />
+ <listitem open="0" type="814" id="1385" />
+ <listitem open="0" type="815" id="1140" />
+ <listitem open="0" type="815" id="1141" />
+ <listitem open="0" type="815" id="1142" />
+ <listitem open="0" type="815" id="1148" />
+ <listitem open="0" type="815" id="1154" />
+ <listitem open="0" type="815" id="1158" />
+ <listitem open="0" type="815" id="1163" />
+ <listitem open="0" type="815" id="1166" />
+ <listitem open="0" type="815" id="1170" />
+ <listitem open="0" type="815" id="1174" />
+ <listitem open="0" type="815" id="1179" />
+ <listitem open="0" type="815" id="1182" />
+ <listitem open="0" type="815" id="1185" />
+ <listitem open="0" type="815" id="1188" />
+ <listitem open="0" type="815" id="1193" />
+ <listitem open="0" type="815" id="1194" />
+ <listitem open="0" type="815" id="1195" />
+ <listitem open="0" type="815" id="1196" />
+ <listitem open="0" type="815" id="1197" />
+ <listitem open="0" type="815" id="1198" />
+ <listitem open="0" type="815" id="1201" />
+ <listitem open="0" type="815" id="1204" />
+ <listitem open="0" type="815" id="1212" />
+ <listitem open="0" type="815" id="1213" />
+ <listitem open="0" type="815" id="1219" />
+ <listitem open="0" type="815" id="1230" />
+ <listitem open="0" type="815" id="1240" />
+ <listitem open="0" type="815" id="1250" />
+ <listitem open="0" type="815" id="1260" />
+ <listitem open="0" type="815" id="1270" />
+ <listitem open="0" type="815" id="1280" />
+ <listitem open="0" type="815" id="1290" />
+ <listitem open="0" type="815" id="1300" />
+ <listitem open="0" type="815" id="1310" />
+ <listitem open="0" type="815" id="1320" />
+ <listitem open="0" type="815" id="1330" />
+ <listitem open="0" type="815" id="1340" />
+ <listitem open="0" type="815" id="1350" />
+ <listitem open="0" type="815" id="1360" />
+ <listitem open="0" type="815" id="1370" />
+ </listitem>
+ <listitem open="0" type="813" id="1380" />
+ <listitem open="0" type="813" id="358" >
+ <listitem open="0" type="814" id="363" />
+ <listitem open="0" type="814" id="364" />
+ <listitem open="0" type="815" id="365" />
+ </listitem>
+ <listitem open="0" type="813" id="247" >
+ <listitem open="0" type="815" id="251" />
+ </listitem>
+ <listitem open="0" type="813" id="1663" >
+ <listitem open="0" type="814" id="1755" />
+ <listitem open="0" type="814" id="1757" />
+ <listitem open="0" type="814" id="1758" />
+ <listitem open="0" type="814" id="1760" />
+ <listitem open="0" type="814" id="1761" />
+ <listitem open="0" type="814" id="1762" />
+ <listitem open="0" type="814" id="1763" />
+ <listitem open="0" type="815" id="1667" />
+ <listitem open="0" type="815" id="1668" />
+ <listitem open="0" type="815" id="1669" />
+ <listitem open="0" type="815" id="1673" />
+ <listitem open="0" type="815" id="1678" />
+ <listitem open="0" type="815" id="1681" />
+ <listitem open="0" type="815" id="1685" />
+ <listitem open="0" type="815" id="1690" />
+ <listitem open="0" type="815" id="1693" />
+ <listitem open="0" type="815" id="1696" />
+ <listitem open="0" type="815" id="1701" />
+ <listitem open="0" type="815" id="1702" />
+ <listitem open="0" type="815" id="1703" />
+ <listitem open="0" type="815" id="1704" />
+ <listitem open="0" type="815" id="1705" />
+ <listitem open="0" type="815" id="1706" />
+ <listitem open="0" type="815" id="1707" />
+ <listitem open="0" type="815" id="1710" />
+ <listitem open="0" type="815" id="1713" />
+ <listitem open="0" type="815" id="1721" />
+ <listitem open="0" type="815" id="1724" />
+ <listitem open="0" type="815" id="1730" />
+ <listitem open="0" type="815" id="1731" />
+ <listitem open="0" type="815" id="1733" />
+ <listitem open="0" type="815" id="1734" />
+ <listitem open="0" type="815" id="1735" />
+ <listitem open="0" type="815" id="1746" />
+ <listitem open="0" type="815" id="1747" />
+ <listitem open="0" type="815" id="1751" />
+ </listitem>
+ <listitem open="0" type="813" id="1774" >
+ <listitem open="0" type="814" id="1895" />
+ <listitem open="0" type="815" id="1778" />
+ <listitem open="0" type="815" id="1779" />
+ <listitem open="0" type="815" id="1780" />
+ <listitem open="0" type="815" id="1784" />
+ <listitem open="0" type="815" id="1789" />
+ <listitem open="0" type="815" id="1792" />
+ <listitem open="0" type="815" id="1796" />
+ <listitem open="0" type="815" id="1801" />
+ <listitem open="0" type="815" id="1804" />
+ <listitem open="0" type="815" id="1807" />
+ <listitem open="0" type="815" id="1808" />
+ <listitem open="0" type="815" id="1809" />
+ <listitem open="0" type="815" id="1810" />
+ <listitem open="0" type="815" id="1811" />
+ <listitem open="0" type="815" id="1812" />
+ <listitem open="0" type="815" id="1813" />
+ <listitem open="0" type="815" id="1816" />
+ <listitem open="0" type="815" id="1819" />
+ <listitem open="0" type="815" id="1827" />
+ <listitem open="0" type="815" id="1830" />
+ <listitem open="0" type="815" id="1836" />
+ <listitem open="0" type="815" id="1841" />
+ <listitem open="0" type="815" id="1845" />
+ <listitem open="0" type="815" id="1846" />
+ <listitem open="0" type="815" id="1857" />
+ <listitem open="0" type="815" id="1865" />
+ <listitem open="0" type="815" id="1875" />
+ <listitem open="0" type="815" id="1885" />
+ </listitem>
+ <listitem open="0" type="813" id="369" >
+ <listitem open="0" type="813" id="373" >
+ <listitem open="0" type="814" id="374" />
+ <listitem open="0" type="814" id="375" />
+ <listitem open="0" type="814" id="376" />
+ <listitem open="0" type="814" id="377" />
+ <listitem open="0" type="814" id="1130" />
+ <listitem open="0" type="814" id="1131" />
+ <listitem open="0" type="814" id="1132" />
+ </listitem>
+ <listitem open="0" type="814" id="566" />
+ <listitem open="0" type="814" id="567" />
+ <listitem open="0" type="814" id="568" />
+ <listitem open="0" type="814" id="570" />
+ <listitem open="0" type="814" id="571" />
+ <listitem open="0" type="814" id="572" />
+ <listitem open="0" type="814" id="573" />
+ <listitem open="0" type="814" id="574" />
+ <listitem open="0" type="815" id="378" />
+ <listitem open="0" type="815" id="379" />
+ <listitem open="0" type="815" id="380" />
+ <listitem open="0" type="815" id="384" />
+ <listitem open="0" type="815" id="389" />
+ <listitem open="0" type="815" id="392" />
+ <listitem open="0" type="815" id="396" />
+ <listitem open="0" type="815" id="400" />
+ <listitem open="0" type="815" id="405" />
+ <listitem open="0" type="815" id="408" />
+ <listitem open="0" type="815" id="411" />
+ <listitem open="0" type="815" id="414" />
+ <listitem open="0" type="815" id="419" />
+ <listitem open="0" type="815" id="420" />
+ <listitem open="0" type="815" id="421" />
+ <listitem open="0" type="815" id="422" />
+ <listitem open="0" type="815" id="423" />
+ <listitem open="0" type="815" id="424" />
+ <listitem open="0" type="815" id="427" />
+ <listitem open="0" type="815" id="430" />
+ <listitem open="0" type="815" id="438" />
+ <listitem open="0" type="815" id="444" />
+ <listitem open="0" type="815" id="455" />
+ <listitem open="0" type="815" id="456" />
+ <listitem open="0" type="815" id="466" />
+ <listitem open="0" type="815" id="476" />
+ <listitem open="0" type="815" id="486" />
+ <listitem open="0" type="815" id="496" />
+ <listitem open="0" type="815" id="506" />
+ <listitem open="0" type="815" id="516" />
+ <listitem open="0" type="815" id="526" />
+ <listitem open="0" type="815" id="536" />
+ <listitem open="0" type="815" id="546" />
+ <listitem open="0" type="815" id="556" />
+ </listitem>
+ <listitem open="0" type="813" id="75" />
+ <listitem open="0" type="813" id="121" />
+ <listitem open="0" type="813" id="1759" />
+ <listitem open="0" type="813" id="870" />
+ <listitem open="0" type="813" id="11" />
+ <listitem open="0" type="813" id="57" />
+ <listitem open="0" type="813" id="226" />
+ <listitem open="0" type="813" id="84" />
+ <listitem open="0" type="813" id="44" />
+ <listitem open="0" type="813" id="163" />
+ <listitem open="0" type="813" id="150" />
+ <listitem open="0" type="813" id="20" />
+ <listitem open="0" type="813" id="53" />
+ <listitem open="0" type="813" id="863" >
+ <listitem open="0" type="814" id="878" />
+ <listitem open="0" type="815" id="869" />
+ <listitem open="0" type="815" id="877" />
+ </listitem>
+ <listitem open="0" type="813" id="1641" />
+ <listitem open="0" type="813" id="1639" />
+ <listitem open="0" type="813" id="1640" />
+ <listitem open="0" type="813" id="1651" >
+ <listitem open="0" type="814" id="1652" />
+ <listitem open="0" type="814" id="1653" />
+ </listitem>
+ <listitem open="0" type="813" id="1642" >
+ <listitem open="0" type="814" id="1643" />
+ <listitem open="0" type="814" id="1644" />
+ <listitem open="0" type="814" id="1645" />
+ <listitem open="0" type="814" id="1646" />
+ <listitem open="0" type="814" id="1647" />
+ <listitem open="0" type="814" id="1648" />
+ <listitem open="0" type="814" id="1649" />
+ <listitem open="0" type="814" id="1650" />
+ </listitem>
+ <listitem open="0" type="813" id="1654" >
+ <listitem open="0" type="814" id="1655" />
+ <listitem open="0" type="814" id="1656" />
+ <listitem open="0" type="814" id="1657" />
+ <listitem open="0" type="814" id="1658" />
+ <listitem open="0" type="814" id="1659" />
+ <listitem open="0" type="814" id="1660" />
+ <listitem open="0" type="814" id="1661" />
+ <listitem open="0" type="814" id="1662" />
+ </listitem>
+ <listitem open="0" type="813" id="49" />
+ <listitem open="0" type="813" id="222" />
+ <listitem open="0" type="813" id="175" />
+ <listitem open="0" type="813" id="38" />
+ <listitem open="0" type="813" id="25" />
+ <listitem open="0" type="813" id="17" >
+ <listitem open="0" type="814" id="19" />
+ <listitem open="0" type="814" id="21" />
+ <listitem open="0" type="814" id="22" />
+ <listitem open="0" type="814" id="23" />
+ <listitem open="0" type="814" id="24" />
+ </listitem>
+ <listitem open="0" type="813" id="42" />
+ <listitem open="0" type="813" id="72" />
+ <listitem open="1" type="817" id="12050" />
+ <listitem open="0" type="818" id="1764" >
+ <listitem open="0" type="813" id="1771" />
+ <listitem open="0" type="813" id="1772" />
+ <listitem open="0" type="829" id="1773" />
+ <listitem open="0" type="831" id="1765" />
+ </listitem>
+ <listitem open="0" type="830" label="Datatypes" >
+ <listitem open="0" type="829" id="244" />
+ <listitem open="0" type="829" id="126" />
+ <listitem open="0" type="829" id="154" />
+ <listitem open="0" type="829" id="109" />
+ <listitem open="0" type="829" id="90" />
+ <listitem open="0" type="829" id="871" />
+ <listitem open="0" type="829" id="96" />
+ <listitem open="0" type="829" id="173" />
+ <listitem open="0" type="829" id="151" />
+ <listitem open="0" type="829" id="1756" />
+ <listitem open="0" type="829" id="78" />
+ <listitem open="0" type="829" id="171" />
+ <listitem open="0" type="829" id="1753" />
+ <listitem open="0" type="829" id="1749" />
+ <listitem open="1" type="829" id="5" />
+ <listitem open="1" type="829" id="8" />
+ <listitem open="1" type="829" id="4" />
+ <listitem open="0" type="829" id="240" />
+ <listitem open="0" type="829" id="202" />
+ <listitem open="0" type="829" id="34" />
+ <listitem open="0" type="829" id="76" />
+ <listitem open="0" type="829" id="875" />
+ <listitem open="0" type="829" id="362" />
+ <listitem open="0" type="829" id="569" />
+ <listitem open="0" type="829" id="54" />
+ <listitem open="0" type="829" id="165" />
+ <listitem open="0" type="829" id="873" />
+ <listitem open="1" type="829" id="7" />
+ <listitem open="1" type="829" id="6" />
+ <listitem open="0" type="829" id="893" />
+ <listitem open="1" type="829" id="2" />
+ <listitem open="1" type="829" id="9" />
+ <listitem open="1" type="829" id="10" />
+ <listitem open="0" type="829" id="32" />
+ </listitem>
+ </listitem>
+ <listitem open="1" type="802" label="Use Case View" />
+ <listitem open="1" type="821" label="Component View" />
+ <listitem open="1" type="827" label="Deployment View" />
+ <listitem open="1" type="836" label="Entity Relationship Model" />
+ </listitem>
+ </listview>
+ <codegeneration>
+ <codegenerator language="Java" >
+ <codedocument writeOutCode="false" package="" id="ANTDOC" fileExt=".xml" fileName="build" >
+ <textblocks>
+ <codeblockwithcomments tag="xmlDecl" text="&lt;?xml version=&quot;1.0&quot;?>" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <xmlelementblock nodeName="project" tag="projectDecl" canDelete="false" >
+ <header>
+ <codecomment tag="" text="Java ANT build document" />
+ </header>
+ <textblocks/>
+ </xmlelementblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ </codedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2" tqparent_class="2" fileExt=".java" fileName="int" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="2" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Int&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Int ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="4" tqparent_class="4" fileExt=".java" fileName="char" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="4" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Char&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Char ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="5" tqparent_class="5" fileExt=".java" fileName="boolean" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="5" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Boolean&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Boolean ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="6" tqparent_class="6" fileExt=".java" fileName="float" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="6" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Float&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Float ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="7" tqparent_class="7" fileExt=".java" fileName="double" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="7" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Double&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Double ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="8" tqparent_class="8" fileExt=".java" fileName="byte" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="8" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Byte&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Byte ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="9" tqparent_class="9" fileExt=".java" fileName="short" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="9" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Short&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Short ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="10" tqparent_class="10" fileExt=".java" fileName="string" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="10" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class String&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public String ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="11" tqparent_class="11" fileExt=".java" fileName="QPainter" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="11" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPainter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPainter ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="12" tqparent_class="12" fileExt=".java" fileName="KisIteratorPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="12" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisIteratorPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisIteratorPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="13" tqparent_class="13" fileExt=".java" fileName="KisPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="13" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="14" tqparent_class="14" fileExt=".java" fileName="KisPixelRO" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="14" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPixelRO&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPixelRO ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="15" tqparent_class="15" fileExt=".java" fileName="KisProfilePair" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="15" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProfilePair&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProfilePair ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="17" tqparent_class="17" fileExt=".java" fileName="transform" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisProfile;&amp;#010;import Q_UINT32;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="17" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Transform&amp;#010;// This would be better, I guess." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="19" tag="tblock_0" canDelete="false" indentLevel="1" text="public KisProfile srcProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="21" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT32 srcCmType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="22" tag="tblock_5" canDelete="false" indentLevel="1" text="public KisProfile dstProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="23" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT32 dstType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="24" tag="tblock_11" canDelete="false" indentLevel="1" text="public Q_UINT32 renderIntent;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Transform ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of srcProfile&amp;#010;&amp;#010;@return the value of srcProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of srcProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of srcCmType&amp;#010;&amp;#010;@return the value of srcCmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of srcCmType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of dstProfile&amp;#010;&amp;#010;@return the value of dstProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of dstProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="23" text="return dstType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of dstType&amp;#010;&amp;#010;@return the value of dstType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="23" text="dstType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of dstType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of renderIntent&amp;#010;&amp;#010;@return the value of renderIntent" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of renderIntent&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="19" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="19" tag="tblock_0" canDelete="false" indentLevel="1" text="public KisProfile srcProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of srcProfile&amp;#010;&amp;#010;@return the value of srcProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of srcProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="21" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="21" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT32 srcCmType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of srcCmType&amp;#010;&amp;#010;@return the value of srcCmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of srcCmType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="22" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="22" tag="tblock_5" canDelete="false" indentLevel="1" text="public KisProfile dstProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of dstProfile&amp;#010;&amp;#010;@return the value of dstProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of dstProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="23" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="23" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT32 dstType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="23" text="return dstType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of dstType&amp;#010;&amp;#010;@return the value of dstType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="23" text="dstType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of dstType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="24" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="24" tag="tblock_11" canDelete="false" indentLevel="1" text="public Q_UINT32 renderIntent;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of renderIntent&amp;#010;&amp;#010;@return the value of renderIntent" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of renderIntent&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="18" tqparent_class="18" fileExt=".java" fileName="KisProfile" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="18" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProfile&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProfile ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="20" tqparent_class="20" fileExt=".java" fileName="Q_UINT32" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="20" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT32 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="25" tqparent_class="25" fileExt=".java" fileName="struct KisColorAdjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="25" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Struct KisColorAdjustment&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Struct KisColorAdjustment ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="26" tqparent_class="26" fileExt=".java" fileName="KisAbstractColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import DWORD;&amp;#010;import icColorSpaceSignature;&amp;#010;import vKisChannelInfoSP;&amp;#010;import Q_INT32;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import Q_UINT32;&amp;#010;import KisID;&amp;#010;import KisCompositeOpList;&amp;#010;import vKisProfileSP;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import QImage;&amp;#010;import Q_UINT8;&amp;#010;import Q_INT8;&amp;#010;import enumChannelFlags;&amp;#010;import cmsHTRANSFORM;&amp;#010;import QStringList;&amp;#010;import KisAbstractColorSpace.TransformMap;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="26" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAbstractColorSpace&amp;#010;A colorspace strategy is the definition of a certain color model&amp;#010;in Chalk." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="227" tag="tblock_0" canDelete="false" indentLevel="1" text="protected QStringList m_profileFilenames;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="228" tag="tblock_2" canDelete="false" indentLevel="1" text="protected KisProfileSP m_defaultProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="229" tag="tblock_5" canDelete="false" indentLevel="1" text="protected Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="230" tag="tblock_8" canDelete="false" indentLevel="1" text="protected Q_INT32 m_alphaPos;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="231" tag="tblock_11" canDelete="false" indentLevel="1" text="protected Q_INT32 m_alphaSize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="232" tag="tblock_14" canDelete="false" indentLevel="1" text="protected cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="233" tag="tblock_17" canDelete="false" indentLevel="1" text="protected cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="234" tag="tblock_20" canDelete="false" indentLevel="1" text="private KisID m_id;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="235" tag="tblock_23" canDelete="false" indentLevel="1" text="private DWORD m_cmType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="236" tag="tblock_26" canDelete="false" indentLevel="1" text="private icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="238" tag="tblock_29" canDelete="false" indentLevel="1" text="private TransformMap m_transforms;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="245" tag="tblock_32" canDelete="false" indentLevel="1" text="private Q_UINT32 m_cachesize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="246" tag="tblock_35" canDelete="false" indentLevel="1" text="private Q_UINT8* m_conversionCache;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAbstractColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profileFilenames&amp;#010;&amp;#010;@return the value of m_profileFilenames" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profileFilenames&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultProfile&amp;#010;&amp;#010;@return the value of m_defaultProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alphaPos&amp;#010;&amp;#010;@return the value of m_alphaPos" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alphaPos&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alphaSize&amp;#010;&amp;#010;@return the value of m_alphaSize" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alphaSize&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="234" text="return m_id;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_id&amp;#010;&amp;#010;@return the value of m_id" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="234" text="m_id = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_id&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_cachesize&amp;#010;&amp;#010;@return the value of m_cachesize" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_cachesize&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_conversionCache&amp;#010;&amp;#010;@return the value of m_conversionCache" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_conversionCache&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="31" tag="operation_31" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Create a new colorspace strategy.&amp;#010;&amp;#010;@param id The Chalk identification of this color model.&amp;#010;@param cmType The littlecms colorstrategy type we wrap.&amp;#010;@param colorSpaceSignature The icc signature for the colorspace we are." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="40" tag="operation_40" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="41" tag="operation_41" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//========== Channels =====================================================//// Return a vector describing all the channels this color model has." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The total number of channels for a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="45" tag="operation_45" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The total number of color channels (excludes alpha and substance) for a single&amp;#010;pixel in this color model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="46" tag="operation_46" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="47" tag="operation_47" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The size in bytes of a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="48" tag="operation_48" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Whether this color model has a channel of type ALPHA" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="50" tag="operation_50" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="51" tag="operation_51" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="52" tag="operation_52" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return a string with the channel's value suitable for display in the gui." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="58" tag="operation_58" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return a string with the channel's value with integer&amp;#010;channels normalised to the floating point range 0 to 1, if appropriate." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="61" tag="operation_61" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisID " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="62" tag="operation_62" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="64" tag="operation_64" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_UINT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="65" tag="operation_65" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param signature &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="67" tag="operation_67" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return icColorSpaceSignature " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="68" tag="operation_68" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//========== Capabilities =================================================///**&amp;#010;Returns the list of user-visible composite ops supported by this colourspace. Internal&amp;#010;ops such as COPY, CLEAR, and ERASE, are not included as these make no sense&amp;#010;for layers in the full image model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="70" tag="operation_70" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="71" tag="operation_71" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//========== Display profiles =============================================///**&amp;#010;Get a list of profiles that apply to this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="73" tag="operation_73" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return the number of profiles available for this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="74" tag="operation_74" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//================= Conversion functions ==================================///**&amp;#010;The nativeColor methods take a given color defined as an RGB QColor&amp;#010;and fills a byte array with the corresponding color in the&amp;#010;the colorspace managed by this strategy.&amp;#010;&amp;#010;The profile parameter is the profile of the paint device; the other profile&amp;#010;is the display profile -- since we are moving from QColor&amp;#010;that have most likely been picked from the display itself.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="82" tag="operation_82" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="88" tag="operation_88" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The toQColor methods take a byte array that is at least pixelSize() long&amp;#010;and converts the contents to a QColor, using the given profile as a source&amp;#010;profile and the display profile as a destination profile.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile&amp;#010;" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="93" tag="operation_93" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="99" tag="operation_99" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the alpha value of the given pixel.&amp;#010;XXX: Change to float/int to match setAlpha() when that changes." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="102" tag="operation_102" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="105" tag="operation_105" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="108" tag="operation_108" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="This function is used to convert a KisPixelRepresentation from this color strategy to the specified&amp;#010;color strategy." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="113" tag="operation_113" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convert the pixels in data to (8-bit BGRA) QImage using the specified profiles.&amp;#010;The pixels are supposed to be encoded in this color model.&amp;#010;&amp;#010;@param data A pointer to a contiguous memory region containing width * height pixels&amp;#010;@param width in pixels&amp;#010;@param height in pixels&amp;#010;@param srcProfile source profile&amp;#010;@param dstProfile destination profile&amp;#010;@param renderingIntent the rendering intent&amp;#010;@param exposure The exposure setting for rendering a preview of a high dynamic range image." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="122" tag="operation_122" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="131" tag="operation_131" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convert the value of the channel at the specified position into&amp;#010;an 8-bit value." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="134" tag="operation_134" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convert the value of the channel at the specified position into&amp;#010;a 16-bit value. This may be upscaling or downscaling, depending&amp;#010;on the defined value of the channel" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="137" tag="operation_137" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//============================== Manipulation fucntions ==========================//// // The manipulation functions have default implementations that _convert_ the pixel// to a QColor and back. Reimplement these methods in your color strategy!///**&amp;#010;Set the alpha channel to the given value.&amp;#010;&amp;#010;pixels -- a pointer to the pixels that will have their alpha set to this value&amp;#010;alpha -- XXX: This must become int or float&amp;#010;nPixels -- the number of pixels&amp;#010;&amp;#010;XXX: Also add a function that modifies the current alpha with the given alpha, i.e., premultiply them?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="141" tag="operation_141" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Applies the specified 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="145" tag="operation_145" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Applies the inverted 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="149" tag="operation_149" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Create an adjustment object for adjusting the brightness and contrast&amp;#010;transferValues is a 256 bins array with values from 0 to 0xFFFF" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="155" tag="operation_155" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Apply the adjustment created with onr of the other functions" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="160" tag="operation_160" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// XXX: What with alpha channels? YYY: Add an overloaded function that takes alpha into account?/**&amp;#010;Get the difference between 2 colors, normalized in the range (0,255)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="164" tag="operation_164" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Mix the colors given their weights and return in dst&amp;#010;The sum of weights is assumed 255" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="170" tag="operation_170" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convolve the given array of pointers to pixels and return the result&amp;#010;in dst. The kernel values are clamped between -128 and 128" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="181" tag="operation_181" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="188" tag="operation_188" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Calculate the intensity of the given pixel, scaled down to the range 0-255. XXX: Maybe this should be more flexible" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="190" tag="operation_190" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Compose two arrays of pixels together. If source and target&amp;#010;are not the same colour model, the source pixels will be&amp;#010;converted to the target model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="206" tag="operation_206" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Compose two byte arrays containing pixels in the same color&amp;#010;model together." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="217" tag="operation_217" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dstColorStrategy &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@return cmsHTRANSFORM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="223" tag="operation_223" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisProfileSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="224" tag="operation_224" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="239" tag="operation_239" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="242" tag="operation_242" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisAbstractColorSpace&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="28" field_type="6357104" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="227" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="227" tag="tblock_0" canDelete="false" indentLevel="1" text="protected QStringList m_profileFilenames;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profileFilenames&amp;#010;&amp;#010;@return the value of m_profileFilenames" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profileFilenames&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="228" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="228" tag="tblock_2" canDelete="false" indentLevel="1" text="protected KisProfileSP m_defaultProfile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultProfile&amp;#010;&amp;#010;@return the value of m_defaultProfile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultProfile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="229" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="229" tag="tblock_5" canDelete="false" indentLevel="1" text="protected Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="230" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="230" tag="tblock_8" canDelete="false" indentLevel="1" text="protected Q_INT32 m_alphaPos;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alphaPos&amp;#010;&amp;#010;@return the value of m_alphaPos" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alphaPos&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="231" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="231" tag="tblock_11" canDelete="false" indentLevel="1" text="protected Q_INT32 m_alphaSize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alphaSize&amp;#010;&amp;#010;@return the value of m_alphaSize" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alphaSize&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="232" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="232" tag="tblock_14" canDelete="false" indentLevel="1" text="protected cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="233" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="233" tag="tblock_17" canDelete="false" indentLevel="1" text="protected cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="234" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="234" tag="tblock_20" canDelete="false" indentLevel="1" text="private KisID m_id;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="234" text="return m_id;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_id&amp;#010;&amp;#010;@return the value of m_id" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="234" text="m_id = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_id&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="235" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// The colorspace type as defined by littlecms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="235" tag="tblock_23" canDelete="false" indentLevel="1" text="private DWORD m_cmType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="236" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="236" tag="tblock_26" canDelete="false" indentLevel="1" text="private icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="238" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Cache for existing transforms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="238" tag="tblock_29" canDelete="false" indentLevel="1" text="private TransformMap m_transforms;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="245" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="245" tag="tblock_32" canDelete="false" indentLevel="1" text="private Q_UINT32 m_cachesize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_cachesize&amp;#010;&amp;#010;@return the value of m_cachesize" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_cachesize&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="246" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="246" tag="tblock_35" canDelete="false" indentLevel="1" text="private Q_UINT8* m_conversionCache;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_conversionCache&amp;#010;&amp;#010;@return the value of m_conversionCache" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_conversionCache&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="248" field_type="2097190" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="351" field_type="7471221" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisF32BaseColorSpace = new KisF32BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisF32BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisF32BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="359" field_type="3866701" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisU16BaseColorSpace = new KisU16BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU16BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU16BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1664" field_type="7274528" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisWetColorSpace = new KisWetColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisWetColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisWetColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1775" field_type="49" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisWetStickyColorSpace = new KisWetStickyColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisWetStickyColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisWetStickyColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="27" tqparent_class="27" fileExt=".java" fileName="KShared" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="27" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KShared&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KShared ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="28" field_type="7077996" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="28" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="28" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="32" tqparent_class="32" fileExt=".java" fileName="void" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="32" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Void&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Void ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="33" tqparent_class="33" fileExt=".java" fileName="KisID" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="33" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisID&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisID ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="34" tqparent_class="34" fileExt=".java" fileName="const KisID&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="34" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisID&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisID&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="36" tqparent_class="36" fileExt=".java" fileName="DWORD" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="36" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class DWORD&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public DWORD ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="38" tqparent_class="38" fileExt=".java" fileName="icColorSpaceSignature" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="38" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class IcColorSpaceSignature&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public IcColorSpaceSignature ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="42" tqparent_class="42" fileExt=".java" fileName="vKisChannelInfoSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="42" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisChannelInfoSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisChannelInfoSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="44" tqparent_class="44" fileExt=".java" fileName="Q_INT32" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="44" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT32 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="49" tqparent_class="49" fileExt=".java" fileName="bool" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="49" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Bool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Bool ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="53" tqparent_class="53" fileExt=".java" fileName="Q_UINT8" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="53" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT8 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="54" tqparent_class="54" fileExt=".java" fileName="const Q_UINT8*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="54" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const Q_UINT8*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const Q_UINT8* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="57" tqparent_class="57" fileExt=".java" fileName=TQSTRING_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="57" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QString&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QString ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="69" tqparent_class="69" fileExt=".java" fileName="KisCompositeOpList" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="69" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCompositeOpList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCompositeOpList ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="72" tqparent_class="72" fileExt=".java" fileName="vKisProfileSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="72" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisProfileSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="75" tqparent_class="75" fileExt=".java" fileName="QColor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="75" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QColor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QColor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="76" tqparent_class="76" fileExt=".java" fileName="const QColor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="76" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QColor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QColor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="78" tqparent_class="78" fileExt=".java" fileName="Q_UINT8*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="78" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT8*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT8* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="80" tqparent_class="80" fileExt=".java" fileName="KisProfileSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="80" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProfileSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="84" tqparent_class="84" fileExt=".java" fileName="QUANTUM" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="84" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QUANTUM&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QUANTUM ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="90" tqparent_class="90" fileExt=".java" fileName="QColor*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="90" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QColor*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QColor* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="96" tqparent_class="96" fileExt=".java" fileName="QUANTUM*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="96" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QUANTUM*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QUANTUM* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="109" tqparent_class="109" fileExt=".java" fileName="KisPixel&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="109" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPixel&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPixel&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="121" tqparent_class="121" fileExt=".java" fileName="QImage" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="121" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QImage&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QImage ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="126" tqparent_class="126" fileExt=".java" fileName="KisAbstractColorSpace*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="126" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAbstractColorSpace*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAbstractColorSpace* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="150" tqparent_class="150" fileExt=".java" fileName="Q_UINT16" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="150" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT16&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT16 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="151" tqparent_class="151" fileExt=".java" fileName="Q_UINT16*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="151" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT16*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT16* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="153" tqparent_class="153" fileExt=".java" fileName="KisColorAdjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="153" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisColorAdjustment&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisColorAdjustment ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="154" tqparent_class="154" fileExt=".java" fileName="KisColorAdjustment*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="154" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisColorAdjustment*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisColorAdjustment* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="163" tqparent_class="163" fileExt=".java" fileName="Q_INT8" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="163" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT8 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="165" tqparent_class="165" fileExt=".java" fileName="const Q_UINT8**" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="165" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const Q_UINT8**&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const Q_UINT8** ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="171" tqparent_class="171" fileExt=".java" fileName="Q_UINT8**" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="171" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT8**&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT8** ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="173" tqparent_class="173" fileExt=".java" fileName="Q_INT32*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="173" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT32*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT32* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="175" tqparent_class="175" fileExt=".java" fileName="enumChannelFlags" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="175" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumChannelFlags&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumChannelFlags ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="201" tqparent_class="201" fileExt=".java" fileName="KisCompositeOp" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="201" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCompositeOp&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCompositeOp ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="202" tqparent_class="202" fileExt=".java" fileName="const KisCompositeOp&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="202" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisCompositeOp&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisCompositeOp&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="222" tqparent_class="222" fileExt=".java" fileName="cmsHTRANSFORM" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="222" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CmsHTRANSFORM&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CmsHTRANSFORM ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="226" tqparent_class="226" fileExt=".java" fileName=TQSTRINGLIST_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="226" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QStringList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QStringList ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisAbstractColorSpace" id="237" tqparent_class="237" fileExt=".java" fileName="TransformMap" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisAbstractColorSpace;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="237" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class TransformMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public TransformMap ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="240" tqparent_class="240" fileExt=".java" fileName="const KisAbstractColorSpace&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="240" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisAbstractColorSpace&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisAbstractColorSpace&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="244" tqparent_class="244" fileExt=".java" fileName="KisAbstractColorSpace&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="244" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAbstractColorSpace&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAbstractColorSpace&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="247" tqparent_class="247" fileExt=".java" fileName="KisU8BaseColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisAbstractColorSpace;&amp;#010;import DWORD;&amp;#010;import icColorSpaceSignature;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="247" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisU8BaseColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This class is the base for all 8-bit/channel colorspaces" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="576" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisCmykColorSpace = new KisCmykColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisU8BaseColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="576" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="576" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="576" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisCmykColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="576" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisCmykColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="576" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="251" tag="operation_251" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="248" field_type="3866701" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="248" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="248" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="256" field_type="6619235" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisAlphaColorSpace = new KisAlphaColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAlphaColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAlphaColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="256" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="576" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="576" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisCmykColorSpace = new KisCmykColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="576" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="576" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="576" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisCmykColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="576" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisCmykColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="576" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="670" field_type="94" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisGrayColorSpace = new KisGrayColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisGrayColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisGrayColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1387" field_type="65" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisRgbColorSpace = new KisRgbColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisRgbColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisRgbColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="255" tqparent_class="255" fileExt=".java" fileName="KisAlphaColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU8BaseColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import enumChannelFlags;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="255" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAlphaColorSpace&amp;#010; Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;The alpha tqmask is a special color strategy that treats all pixels as&amp;#010;alpha value with a colour common to the tqmask. The default color is white." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="256" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="349" tag="tblock_5" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAlphaColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="256" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="256" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="256" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="256" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="256" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="349" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="259" tag="operation_259" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="260" tag="operation_260" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="261" tag="operation_261" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="265" tag="operation_265" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="270" tag="operation_270" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="273" tag="operation_273" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="277" tag="operation_277" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="282" tag="operation_282" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="285" tag="operation_285" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="288" tag="operation_288" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="291" tag="operation_291" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="296" tag="operation_296" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="297" tag="operation_297" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="298" tag="operation_298" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="299" tag="operation_299" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="300" tag="operation_300" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="301" tag="operation_301" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="304" tag="operation_304" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="307" tag="operation_307" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="315" tag="operation_315" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="321" tag="operation_321" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param kernelValues &amp;#010;@param channelFlags &amp;#010;@param dst &amp;#010;@param factor &amp;#010;@param offset &amp;#010;@param nColors &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="329" tag="operation_329" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="337" tag="operation_337" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="348" tag="operation_348" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="256" field_type="0" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="256" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="256" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="256" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="256" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="256" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="256" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="256" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="349" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="349" tag="tblock_5" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="349" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="350" tqparent_class="350" fileExt=".java" fileName="KisF32BaseColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisAbstractColorSpace;&amp;#010;import DWORD;&amp;#010;import icColorSpaceSignature;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="350" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisF32BaseColorSpace&amp;#010; Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This class is the base for all 32-bit float colorspaces." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="880" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisF32RgbColorSpace = new KisF32RgbColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisF32BaseColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="880" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="880" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="880" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisF32RgbColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="880" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisF32RgbColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="880" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="354" tag="operation_354" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="351" field_type="65" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="351" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="351" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="880" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="880" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisF32RgbColorSpace = new KisF32RgbColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="880" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="880" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="880" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisF32RgbColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="880" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisF32RgbColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="880" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="358" tqparent_class="358" fileExt=".java" fileName="KisU16BaseColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisAbstractColorSpace;&amp;#010;import DWORD;&amp;#010;import icColorSpaceSignature;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="358" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisU16BaseColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This is the base class for 16-bit/channel colorspaces. It defines&amp;#010;a number of common methods, like handling 16-bit alpha and up-&amp;#010;and down-scaling of channels." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="363" tag="tblock_0" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="364" tag="tblock_2" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="370" tag="tblock_5" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisXyzColorSpace = new KisXyzColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisU16BaseColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;@return the value of U16_OPACITY_OPAQUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;@return the value of U16_OPACITY_TRANSPARENT" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="370" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="370" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="370" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisXyzColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="370" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisXyzColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="370" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="365" tag="operation_365" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="359" field_type="2097190" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="359" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="359" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="363" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="363" tag="tblock_0" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;@return the value of U16_OPACITY_OPAQUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="364" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="364" tag="tblock_2" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;@return the value of U16_OPACITY_TRANSPARENT" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="370" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="370" tag="tblock_5" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisXyzColorSpace = new KisXyzColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="370" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="370" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="370" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisXyzColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="370" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisXyzColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="370" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1135" field_type="92" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisRgbU16ColorSpace = new KisRgbU16ColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisRgbU16ColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisRgbU16ColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="362" tqparent_class="362" fileExt=".java" fileName="const Q_UINT16" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="362" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const Q_UINT16&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const Q_UINT16 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="369" tqparent_class="369" fileExt=".java" fileName="KisXyzColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU16BaseColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_UINT8;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import KisCompositeOpList;&amp;#010;import Q_UINT16;&amp;#010;import cmsHTRANSFORM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="369" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisXyzColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="566" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="567" tag="tblock_2" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_5" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="570" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_X;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="571" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_Y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="572" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_Z;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="573" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="574" tag="tblock_20" canDelete="false" indentLevel="1" text="private Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisXyzColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="566" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_X&amp;#010;&amp;#010;@return the value of PIXEL_X" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_X&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_Y&amp;#010;&amp;#010;@return the value of PIXEL_Y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_Y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_Z&amp;#010;&amp;#010;@return the value of PIXEL_Z" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_Z&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="378" tag="operation_378" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="379" tag="operation_379" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="380" tag="operation_380" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="384" tag="operation_384" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="389" tag="operation_389" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="392" tag="operation_392" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="396" tag="operation_396" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="400" tag="operation_400" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="405" tag="operation_405" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="408" tag="operation_408" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="411" tag="operation_411" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="414" tag="operation_414" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="419" tag="operation_419" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="420" tag="operation_420" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="421" tag="operation_421" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="422" tag="operation_422" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="423" tag="operation_423" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="424" tag="operation_424" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="427" tag="operation_427" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="430" tag="operation_430" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="438" tag="operation_438" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="444" tag="operation_444" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="455" tag="operation_455" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="456" tag="operation_456" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="466" tag="operation_466" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="476" tag="operation_476" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="486" tag="operation_486" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="506" tag="operation_506" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="516" tag="operation_516" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="526" tag="operation_526" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="536" tag="operation_536" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="546" tag="operation_546" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="556" tag="operation_556" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="370" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU16BaseColorSpace = new KisU16BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU16BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU16BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="370" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="370" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="566" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="566" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="566" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="567" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="567" tag="tblock_2" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="568" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_5" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="570" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="570" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_X;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_X&amp;#010;&amp;#010;@return the value of PIXEL_X" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_X&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="571" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="571" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_Y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_Y&amp;#010;&amp;#010;@return the value of PIXEL_Y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_Y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="572" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="572" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_Z;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_Z&amp;#010;&amp;#010;@return the value of PIXEL_Z" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_Z&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="573" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="573" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="574" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="574" tag="tblock_20" canDelete="false" indentLevel="1" text="private Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisRgbU16ColorSpace" id="373" tqparent_class="373" fileExt=".java" fileName="Pixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisRgbU16ColorSpace;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_UINT16;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="373" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Pixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="374" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_UINT16 X;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="375" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT16 Y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="376" tag="tblock_5" canDelete="false" indentLevel="1" text="public Q_UINT16 Z;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="377" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT16 alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1130" tag="tblock_11" canDelete="false" indentLevel="1" text="public float blue;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1131" tag="tblock_14" canDelete="false" indentLevel="1" text="public float green;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1132" tag="tblock_17" canDelete="false" indentLevel="1" text="public float red;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Pixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="374" text="return X;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of X&amp;#010;&amp;#010;@return the value of X" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="374" text="X = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of X&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="375" text="return Y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of Y&amp;#010;&amp;#010;@return the value of Y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="375" text="Y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of Y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="376" text="return Z;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of Z&amp;#010;&amp;#010;@return the value of Z" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="376" text="Z = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of Z&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="377" text="return alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of alpha&amp;#010;&amp;#010;@return the value of alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="377" text="alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1130" text="return blue;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of blue&amp;#010;&amp;#010;@return the value of blue" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1130" text="blue = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of blue&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1131" text="return green;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of green&amp;#010;&amp;#010;@return the value of green" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1131" text="green = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of green&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1132" text="return red;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of red&amp;#010;&amp;#010;@return the value of red" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1132" text="red = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of red&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="374" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="374" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_UINT16 X;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="374" text="return X;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of X&amp;#010;&amp;#010;@return the value of X" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="374" text="X = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of X&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="375" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="375" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT16 Y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="375" text="return Y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of Y&amp;#010;&amp;#010;@return the value of Y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="375" text="Y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of Y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="376" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="376" tag="tblock_5" canDelete="false" indentLevel="1" text="public Q_UINT16 Z;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="376" text="return Z;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of Z&amp;#010;&amp;#010;@return the value of Z" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="376" text="Z = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of Z&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="377" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="377" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT16 alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="377" text="return alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of alpha&amp;#010;&amp;#010;@return the value of alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="377" text="alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1130" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1130" tag="tblock_11" canDelete="false" indentLevel="1" text="public float blue;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1130" text="return blue;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of blue&amp;#010;&amp;#010;@return the value of blue" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1130" text="blue = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of blue&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1131" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1131" tag="tblock_14" canDelete="false" indentLevel="1" text="public float green;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1131" text="return green;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of green&amp;#010;&amp;#010;@return the value of green" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1131" text="green = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of green&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1132" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1132" tag="tblock_17" canDelete="false" indentLevel="1" text="public float red;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1132" text="return red;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of red&amp;#010;&amp;#010;@return the value of red" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1132" text="red = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of red&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="569" tqparent_class="569" fileExt=".java" fileName="const Q_UINT8" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="569" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const Q_UINT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const Q_UINT8 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="575" tqparent_class="575" fileExt=".java" fileName="KisCmykColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU8BaseColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_UINT8;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import Q_INT8;&amp;#010;import KisCompositeOpList;&amp;#010;import cmsHTRANSFORM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="575" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCmykColorSpace&amp;#010; Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="660" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="661" tag="tblock_2" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="662" tag="tblock_5" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="663" tag="tblock_8" canDelete="false" indentLevel="1" text="private Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="664" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_CYAN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="665" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_MAGENTA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="666" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_YELLOW;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="667" tag="tblock_20" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLACK;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="668" tag="tblock_23" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_CMYK_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCmykColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="660" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_CYAN&amp;#010;&amp;#010;@return the value of PIXEL_CYAN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_CYAN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_MAGENTA&amp;#010;&amp;#010;@return the value of PIXEL_MAGENTA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_MAGENTA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_YELLOW&amp;#010;&amp;#010;@return the value of PIXEL_YELLOW" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_YELLOW&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLACK&amp;#010;&amp;#010;@return the value of PIXEL_BLACK" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLACK&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_CMYK_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_CMYK_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_CMYK_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="579" tag="operation_579" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="581" tag="operation_581" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="585" tag="operation_585" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="590" tag="operation_590" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="593" tag="operation_593" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="597" tag="operation_597" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param color &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="601" tag="operation_601" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param color &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="606" tag="operation_606" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="612" tag="operation_612" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="617" tag="operation_617" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="618" tag="operation_618" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="620" tag="operation_620" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="622" tag="operation_622" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="625" tag="operation_625" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="628" tag="operation_628" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="636" tag="operation_636" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="639" tag="operation_639" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="651" tag="operation_651" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="652" tag="operation_652" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dstRowStart &amp;#010;@param dstRowStride &amp;#010;@param srcRowStart &amp;#010;@param srcRowStride &amp;#010;@param rows &amp;#010;@param numColumns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="576" field_type="49" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="576" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="576" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="660" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="660" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="661" tag="tblock_2" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultToRGB&amp;#010;&amp;#010;@return the value of m_defaultToRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultToRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="662" tag="tblock_5" canDelete="false" indentLevel="1" text="private cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_defaultFromRGB&amp;#010;&amp;#010;@return the value of m_defaultFromRGB" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_defaultFromRGB&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="663" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="663" tag="tblock_8" canDelete="false" indentLevel="1" text="private Q_UINT8* m_qcolordata;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="664" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="664" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_CYAN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_CYAN&amp;#010;&amp;#010;@return the value of PIXEL_CYAN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_CYAN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="665" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="665" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_MAGENTA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_MAGENTA&amp;#010;&amp;#010;@return the value of PIXEL_MAGENTA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_MAGENTA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="666" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="666" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_YELLOW;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_YELLOW&amp;#010;&amp;#010;@return the value of PIXEL_YELLOW" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_YELLOW&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="667" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="667" tag="tblock_20" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLACK;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLACK&amp;#010;&amp;#010;@return the value of PIXEL_BLACK" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLACK&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="668" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="668" tag="tblock_23" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_CMYK_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_CMYK_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_CMYK_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_CMYK_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="669" tqparent_class="669" fileExt=".java" fileName="KisGrayColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU8BaseColorSpace;&amp;#010;import Q_UINT8;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="669" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGrayColorSpace&amp;#010; Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="861" tag="tblock_2" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GRAY;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="862" tag="tblock_5" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GRAY_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGrayColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="860" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GRAY&amp;#010;&amp;#010;@return the value of PIXEL_GRAY" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GRAY&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GRAY_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_GRAY_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GRAY_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="673" tag="operation_673" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="674" tag="operation_674" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="675" tag="operation_675" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param gray &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="679" tag="operation_679" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param gray &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="683" tag="operation_683" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="687" tag="operation_687" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="692" tag="operation_692" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="703" tag="operation_703" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="711" tag="operation_711" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="714" tag="operation_714" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="717" tag="operation_717" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="722" tag="operation_722" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="723" tag="operation_723" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="724" tag="operation_724" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="725" tag="operation_725" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="726" tag="operation_726" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="727" tag="operation_727" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="730" tag="operation_730" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="733" tag="operation_733" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="741" tag="operation_741" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="747" tag="operation_747" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="758" tag="operation_758" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="759" tag="operation_759" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="769" tag="operation_769" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="789" tag="operation_789" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="799" tag="operation_799" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="809" tag="operation_809" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="819" tag="operation_819" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="839" tag="operation_839" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="849" tag="operation_849" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="670" field_type="94" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="670" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="670" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="860" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="860" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="861" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="861" tag="tblock_2" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GRAY;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GRAY&amp;#010;&amp;#010;@return the value of PIXEL_GRAY" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GRAY&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="862" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="862" tag="tblock_5" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GRAY_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GRAY_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_GRAY_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GRAY_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="859" tqparent_class="859" fileExt=".java" fileName="KisGrayColorSpaceTester" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="859" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGrayColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGrayColorSpaceTester ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="863" tqparent_class="863" fileExt=".java" fileName="RGBF32Plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="863" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class RGBF32Plugin&amp;#010; Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;A plugin wrapper around the RGB F32 colour space strategy." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="878" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisAbstractColorSpace* m_ColorSpaceRGBF32;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public RGBF32Plugin ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_ColorSpaceRGBF32&amp;#010;&amp;#010;@return the value of m_ColorSpaceRGBF32" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_ColorSpaceRGBF32&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="869" tag="operation_869" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param name &amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="877" tag="operation_877" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="866" field_type="-1" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public Plugin = new Plugin ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type Plugin to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type Plugin from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="878" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="878" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisAbstractColorSpace* m_ColorSpaceRGBF32;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_ColorSpaceRGBF32&amp;#010;&amp;#010;@return the value of m_ColorSpaceRGBF32" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_ColorSpaceRGBF32&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="864" tqparent_class="864" fileExt=".java" fileName="KParts" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="864" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KParts&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KParts ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KParts" id="865" tqparent_class="865" fileExt=".java" fileName="Plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KParts;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="865" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Plugin&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Plugin ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="866" field_type="-1" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public RGBF32Plugin = new RGBF32Plugin ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type RGBF32Plugin to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type RGBF32Plugin from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="866" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="866" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="870" tqparent_class="870" fileExt=".java" fileName=TQOBJECT_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="870" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QObject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QObject ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="871" tqparent_class="871" fileExt=".java" fileName="QObject*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="871" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QObject*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QObject* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="873" tqparent_class="873" fileExt=".java" fileName="const char*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="873" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const char*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const char* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="875" tqparent_class="875" fileExt=".java" fileName="const QStringList&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="875" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QStringList&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QStringList&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="879" tqparent_class="879" fileExt=".java" fileName="KisF32RgbColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisF32BaseColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_UINT8;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="879" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisF32RgbColorSpace&amp;#010; Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>&amp;#010; Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1125" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1126" tag="tblock_2" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1127" tag="tblock_5" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1128" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1129" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisF32RgbColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLUE&amp;#010;&amp;#010;@return the value of PIXEL_BLUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GREEN&amp;#010;&amp;#010;@return the value of PIXEL_GREEN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GREEN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_RED&amp;#010;&amp;#010;@return the value of PIXEL_RED" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_RED&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="884" tag="operation_884" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="885" tag="operation_885" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="891" tag="operation_891" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="898" tag="operation_898" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="902" tag="operation_902" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="907" tag="operation_907" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="910" tag="operation_910" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="914" tag="operation_914" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="918" tag="operation_918" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="923" tag="operation_923" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="932" tag="operation_932" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="939" tag="operation_939" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="940" tag="operation_940" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="941" tag="operation_941" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="942" tag="operation_942" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="956" tag="operation_956" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="957" tag="operation_957" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="963" tag="operation_963" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="974" tag="operation_974" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="994" tag="operation_994" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1014" tag="operation_1014" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1024" tag="operation_1024" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1034" tag="operation_1034" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1044" tag="operation_1044" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1074" tag="operation_1074" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1104" tag="operation_1104" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1114" tag="operation_1114" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="880" field_type="65" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisF32BaseColorSpace = new KisF32BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisF32BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisF32BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="880" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="880" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1125" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1125" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1126" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1126" tag="tblock_2" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLUE&amp;#010;&amp;#010;@return the value of PIXEL_BLUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1127" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1127" tag="tblock_5" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GREEN&amp;#010;&amp;#010;@return the value of PIXEL_GREEN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GREEN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1128" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1128" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_RED&amp;#010;&amp;#010;@return the value of PIXEL_RED" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_RED&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1129" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1129" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="893" tqparent_class="893" fileExt=".java" fileName="float*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="893" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Float*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Float* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1124" tqparent_class="1124" fileExt=".java" fileName="KisF32RgbColorSpaceTester" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1124" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisF32RgbColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisF32RgbColorSpaceTester ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1133" tqparent_class="1133" fileExt=".java" fileName="KisF32RgbColorSpaceSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1133" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisF32RgbColorSpaceSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisF32RgbColorSpaceSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1134" tqparent_class="1134" fileExt=".java" fileName="KisRgbU16ColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU16BaseColorSpace;&amp;#010;import Q_UINT16;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_UINT8;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1134" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRgbU16ColorSpace&amp;#010; Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>&amp;#010; Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_0" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_2" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1381" tag="tblock_5" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1382" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1383" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1384" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1385" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRgbU16ColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;@return the value of U16_OPACITY_OPAQUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;@return the value of U16_OPACITY_TRANSPARENT" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLUE&amp;#010;&amp;#010;@return the value of PIXEL_BLUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GREEN&amp;#010;&amp;#010;@return the value of PIXEL_GREEN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GREEN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_RED&amp;#010;&amp;#010;@return the value of PIXEL_RED" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_RED&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1140" tag="operation_1140" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1141" tag="operation_1141" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1142" tag="operation_1142" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1148" tag="operation_1148" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1154" tag="operation_1154" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1158" tag="operation_1158" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1163" tag="operation_1163" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1166" tag="operation_1166" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1170" tag="operation_1170" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1174" tag="operation_1174" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1179" tag="operation_1179" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1185" tag="operation_1185" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1188" tag="operation_1188" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1193" tag="operation_1193" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1195" tag="operation_1195" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1197" tag="operation_1197" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1198" tag="operation_1198" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1201" tag="operation_1201" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1204" tag="operation_1204" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1212" tag="operation_1212" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1213" tag="operation_1213" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1219" tag="operation_1219" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1230" tag="operation_1230" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1240" tag="operation_1240" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1250" tag="operation_1250" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1260" tag="operation_1260" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1270" tag="operation_1270" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1280" tag="operation_1280" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1290" tag="operation_1290" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1300" tag="operation_1300" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1310" tag="operation_1310" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1320" tag="operation_1320" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1330" tag="operation_1330" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1340" tag="operation_1340" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1350" tag="operation_1350" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1360" tag="operation_1360" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1370" tag="operation_1370" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1135" field_type="92" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU16BaseColorSpace = new KisU16BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU16BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU16BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1135" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1135" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_0" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;@return the value of U16_OPACITY_OPAQUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_OPAQUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1139" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_2" canDelete="false" indentLevel="1" text="static public const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;@return the value of U16_OPACITY_TRANSPARENT" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of U16_OPACITY_TRANSPARENT&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1381" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1381" tag="tblock_5" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1382" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1382" tag="tblock_8" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_BLUE&amp;#010;&amp;#010;@return the value of PIXEL_BLUE" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_BLUE&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1383" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1383" tag="tblock_11" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_GREEN&amp;#010;&amp;#010;@return the value of PIXEL_GREEN" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_GREEN&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1384" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1384" tag="tblock_14" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_RED&amp;#010;&amp;#010;@return the value of PIXEL_RED" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_RED&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1385" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1385" tag="tblock_17" canDelete="false" indentLevel="1" text="static private const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of PIXEL_ALPHA&amp;#010;&amp;#010;@return the value of PIXEL_ALPHA" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of PIXEL_ALPHA&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1380" tqparent_class="1380" fileExt=".java" fileName="KisRgbU16ColorSpaceTester" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1380" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRgbU16ColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRgbU16ColorSpaceTester ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1386" tqparent_class="1386" fileExt=".java" fileName="KisRgbColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisU8BaseColorSpace;&amp;#010;import Q_UINT8;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import Q_INT32;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT32;&amp;#010;import enumChannelFlags;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1386" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRgbColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1638" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRgbColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1390" tag="operation_1390" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1391" tag="operation_1391" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1392" tag="operation_1392" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1398" tag="operation_1398" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1404" tag="operation_1404" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1408" tag="operation_1408" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1413" tag="operation_1413" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1416" tag="operation_1416" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1420" tag="operation_1420" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1424" tag="operation_1424" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1429" tag="operation_1429" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1432" tag="operation_1432" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1435" tag="operation_1435" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 &amp;#010;@return Q_INT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1438" tag="operation_1438" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1443" tag="operation_1443" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param kernelValues &amp;#010;@param channelFlags &amp;#010;@param dst &amp;#010;@param factor &amp;#010;@param offset &amp;#010;@param nColors &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1452" tag="operation_1452" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1453" tag="operation_1453" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1454" tag="operation_1454" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1455" tag="operation_1455" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1456" tag="operation_1456" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1459" tag="operation_1459" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1462" tag="operation_1462" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1470" tag="operation_1470" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1471" tag="operation_1471" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param transferValues &amp;#010;@return KisColorAdjustment* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1473" tag="operation_1473" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1478" tag="operation_1478" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1485" tag="operation_1485" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@return Q_UINT8 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1487" tag="operation_1487" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1498" tag="operation_1498" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1508" tag="operation_1508" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1528" tag="operation_1528" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1538" tag="operation_1538" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1558" tag="operation_1558" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1568" tag="operation_1568" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1578" tag="operation_1578" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1598" tag="operation_1598" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1608" tag="operation_1608" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1618" tag="operation_1618" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1628" tag="operation_1628" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1387" field_type="65" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisU8BaseColorSpace = new KisU8BaseColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisU8BaseColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisU8BaseColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1387" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1387" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1638" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1638" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1639" tqparent_class="1639" fileExt=".java" fileName="WetPix" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1639" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class WetPix&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public WetPix ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1640" tqparent_class="1640" fileExt=".java" fileName="WetPixDbl" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1640" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class WetPixDbl&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public WetPixDbl ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1641" tqparent_class="1641" fileExt=".java" fileName="WetPack" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1641" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class WetPack&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public WetPack ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1642" tqparent_class="1642" fileExt=".java" fileName="_WetPix" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_UINT16;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1642" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class _WetPix&amp;#010;White is made up of myth-red, myth-green, and myth-blue. Myth-red&amp;#010;looks red when viewed reflectively, but cyan when viewed&amp;#010;transmissively (thus, it vaguely resembles a dichroic&amp;#010;filter). Myth-red over black is red, and myth-red over white is&amp;#010;white.&amp;#010;&amp;#010;Total red channel concentration is myth-red concentration plus&amp;#010;cyan concentration." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1643" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_UINT16 rd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1644" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT16 rw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1645" tag="tblock_5" canDelete="false" indentLevel="1" text="public Q_UINT16 gd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1646" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT16 gw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_11" canDelete="false" indentLevel="1" text="public Q_UINT16 bd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_14" canDelete="false" indentLevel="1" text="public Q_UINT16 bw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="tblock_17" canDelete="false" indentLevel="1" text="public Q_UINT16 w;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1650" tag="tblock_20" canDelete="false" indentLevel="1" text="public Q_UINT16 h;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public _WetPix ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1643" text="return rd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1643" text="rd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1644" text="return rw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1644" text="rw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1645" text="return gd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1645" text="gd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1646" text="return gw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1646" text="gw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1647" text="return bd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1647" text="bd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1648" text="return bw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1648" text="bw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1649" text="return w;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1649" text="w = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1650" text="return h;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1650" text="h = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1643" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1643" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_UINT16 rd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1643" text="return rd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1643" text="rd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1644" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1644" tag="tblock_2" canDelete="false" indentLevel="1" text="public Q_UINT16 rw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1644" text="return rw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1644" text="rw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1645" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1645" tag="tblock_5" canDelete="false" indentLevel="1" text="public Q_UINT16 gd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1645" text="return gd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1645" text="gd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1646" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1646" tag="tblock_8" canDelete="false" indentLevel="1" text="public Q_UINT16 gw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1646" text="return gw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1646" text="gw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1647" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_11" canDelete="false" indentLevel="1" text="public Q_UINT16 bd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1647" text="return bd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1647" text="bd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1648" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_14" canDelete="false" indentLevel="1" text="public Q_UINT16 bw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1648" text="return bw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1648" text="bw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1649" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="tblock_17" canDelete="false" indentLevel="1" text="public Q_UINT16 w;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1649" text="return w;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1649" text="w = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1650" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1650" tag="tblock_20" canDelete="false" indentLevel="1" text="public Q_UINT16 h;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1650" text="return h;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1650" text="h = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1651" tqparent_class="1651" fileExt=".java" fileName="_WetPack" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import WetPix;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1651" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class _WetPack&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1652" tag="tblock_0" canDelete="false" indentLevel="1" text="public WetPix paint;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1653" tag="tblock_2" canDelete="false" indentLevel="1" text="public WetPix adsorb;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public _WetPack ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1652" text="return paint;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1652" text="paint = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1652" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Paint layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1652" tag="tblock_0" canDelete="false" indentLevel="1" text="public WetPix paint;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1652" text="return paint;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1652" text="paint = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1653" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Adsorbtion layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1653" tag="tblock_2" canDelete="false" indentLevel="1" text="public WetPix adsorb;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1654" tqparent_class="1654" fileExt=".java" fileName="_WetPixDbl" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1654" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class _WetPixDbl&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1655" tag="tblock_0" canDelete="false" indentLevel="1" text="public double rd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1656" tag="tblock_2" canDelete="false" indentLevel="1" text="public double rw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1657" tag="tblock_5" canDelete="false" indentLevel="1" text="public double gd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1658" tag="tblock_8" canDelete="false" indentLevel="1" text="public double gw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1659" tag="tblock_11" canDelete="false" indentLevel="1" text="public double bd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1660" tag="tblock_14" canDelete="false" indentLevel="1" text="public double bw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1661" tag="tblock_17" canDelete="false" indentLevel="1" text="public double w;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1662" tag="tblock_20" canDelete="false" indentLevel="1" text="public double h;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public _WetPixDbl ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1655" text="return rd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1655" text="rd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1656" text="return rw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1656" text="rw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1657" text="return gd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1657" text="gd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1658" text="return gw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1658" text="gw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1659" text="return bd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1659" text="bd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1660" text="return bw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1660" text="bw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1661" text="return w;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1661" text="w = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1662" text="return h;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1662" text="h = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1655" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1655" tag="tblock_0" canDelete="false" indentLevel="1" text="public double rd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1655" text="return rd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1655" text="rd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1656" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1656" tag="tblock_2" canDelete="false" indentLevel="1" text="public double rw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1656" text="return rw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1656" text="rw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1657" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1657" tag="tblock_5" canDelete="false" indentLevel="1" text="public double gd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1657" text="return gd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1657" text="gd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1658" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1658" tag="tblock_8" canDelete="false" indentLevel="1" text="public double gw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1658" text="return gw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1658" text="gw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1659" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1659" tag="tblock_11" canDelete="false" indentLevel="1" text="public double bd;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1659" text="return bd;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1659" text="bd = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1660" tag="tblock_14" canDelete="false" indentLevel="1" text="public double bw;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1660" text="return bw;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1660" text="bw = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1661" tag="tblock_17" canDelete="false" indentLevel="1" text="public double w;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1661" text="return w;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1661" text="w = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="Height of paper surface" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1662" tag="tblock_20" canDelete="false" indentLevel="1" text="public double h;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1662" text="return h;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1662" text="h = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1663" tqparent_class="1663" fileExt=".java" fileName="KisWetColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisAbstractColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import Q_UINT32;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import QString;&amp;#010;import QImage;&amp;#010;import Q_INT8;&amp;#010;import KisCompositeOpList;&amp;#010;import QStringList;&amp;#010;import QMap;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1663" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisWetColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_2" canDelete="false" indentLevel="1" text="private Q_UINT32* wet_render_tab;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1758" tag="tblock_5" canDelete="false" indentLevel="1" text="private QStringList m_paintNames;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_8" canDelete="false" indentLevel="1" text="private QMap m_conversionMap;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_11" canDelete="false" indentLevel="1" text="private boolean m_paintwetness;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_14" canDelete="false" indentLevel="1" text="private int phase;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_17" canDelete="false" indentLevel="1" text="private int phasebig;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisWetColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of wet_render_tab&amp;#010;&amp;#010;@return the value of wet_render_tab" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of wet_render_tab&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintNames&amp;#010;&amp;#010;@return the value of m_paintNames" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintNames&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_conversionMap&amp;#010;&amp;#010;@return the value of m_conversionMap" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_conversionMap&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintwetness&amp;#010;&amp;#010;@return the value of m_paintwetness" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintwetness&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1762" text="return phase;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of phase&amp;#010;&amp;#010;@return the value of phase" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1762" text="phase = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of phase&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of phasebig&amp;#010;&amp;#010;@return the value of phasebig" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of phasebig&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1667" tag="operation_1667" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1668" tag="operation_1668" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1669" tag="operation_1669" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Semi-clever: we have only fifteen wet paint colors that are mapped to the// qcolors that are put in the painter by the special wet paint palette. Other// QColors are mapped to plain water..." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1673" tag="operation_1673" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1678" tag="operation_1678" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1681" tag="operation_1681" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1685" tag="operation_1685" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1690" tag="operation_1690" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1693" tag="operation_1693" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1696" tag="operation_1696" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1701" tag="operation_1701" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1702" tag="operation_1702" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1703" tag="operation_1703" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1704" tag="operation_1704" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1705" tag="operation_1705" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1706" tag="operation_1706" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1707" tag="operation_1707" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1710" tag="operation_1710" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1713" tag="operation_1713" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1721" tag="operation_1721" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1724" tag="operation_1724" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@param &amp;#010;@param &amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1730" tag="operation_1730" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1731" tag="operation_1731" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param b &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1733" tag="operation_1733" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1735" tag="operation_1735" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1746" tag="operation_1746" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// This was static, but since we have only one instance of the color strategy,// it can be just as well a private member variable." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1747" tag="operation_1747" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Convert a single pixel from its wet representation to rgb" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1751" tag="operation_1751" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param pack &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1664" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1664" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1664" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1755" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1757" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_2" canDelete="false" indentLevel="1" text="private Q_UINT32* wet_render_tab;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of wet_render_tab&amp;#010;&amp;#010;@return the value of wet_render_tab" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of wet_render_tab&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1758" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1758" tag="tblock_5" canDelete="false" indentLevel="1" text="private QStringList m_paintNames;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintNames&amp;#010;&amp;#010;@return the value of m_paintNames" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintNames&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1760" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_8" canDelete="false" indentLevel="1" text="private QMap m_conversionMap;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_conversionMap&amp;#010;&amp;#010;@return the value of m_conversionMap" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_conversionMap&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1761" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_11" canDelete="false" indentLevel="1" text="private boolean m_paintwetness;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintwetness&amp;#010;&amp;#010;@return the value of m_paintwetness" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintwetness&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1762" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_14" canDelete="false" indentLevel="1" text="private int phase;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1762" text="return phase;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of phase&amp;#010;&amp;#010;@return the value of phase" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1762" text="phase = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of phase&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1763" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_17" canDelete="false" indentLevel="1" text="private int phasebig;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of phasebig&amp;#010;&amp;#010;@return the value of phasebig" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of phasebig&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1749" tqparent_class="1749" fileExt=".java" fileName="WetPix*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1749" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class WetPix*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public WetPix* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1753" tqparent_class="1753" fileExt=".java" fileName="WetPack*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1753" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class WetPack*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public WetPack* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1756" tqparent_class="1756" fileExt=".java" fileName="Q_UINT32*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1756" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT32*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT32* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1759" tqparent_class="1759" fileExt=".java" fileName="QMap" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1759" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QMap ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="WetAndSticky" id="1765" tqparent_class="1765" fileExt=".java" fileName="enumDirection" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package WetAndSticky;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1765" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumDirection&amp;#010;A color is specified as a vector in HLS space. Hue is a value&amp;#010;in the range 0..360 degrees with 0 degrees being red. Saturation&amp;#010;and Lightness are both in the range [0,1]. A lightness of 0 means&amp;#010;black, with 1 being white. A totally saturated color has saturation&amp;#010;of 1." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumDirection ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="WetAndSticky" id="1771" tqparent_class="1771" fileExt=".java" fileName="CELL" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package WetAndSticky;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1771" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CELL&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CELL ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="WetAndSticky" id="1772" tqparent_class="1772" fileExt=".java" fileName="cell" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package WetAndSticky;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1772" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Cell&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Cell ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="WetAndSticky" id="1773" tqparent_class="1773" fileExt=".java" fileName="CELL_PTR" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package WetAndSticky;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1773" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CELL_PTR&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CELL_PTR ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1774" tqparent_class="1774" fileExt=".java" fileName="KisWetStickyColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisAbstractColorSpace;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;&amp;#010;import KisPixelRO;&amp;#010;import KisPixel;&amp;#010;import vKisChannelInfoSP;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import QString;&amp;#010;import Q_UINT32;&amp;#010;import QImage;&amp;#010;import Q_INT8;&amp;#010;import Q_UINT8;&amp;#010;import KisCompositeOpList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1774" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisWetStickyColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1895" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisWetStickyColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1778" tag="operation_1778" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1779" tag="operation_1779" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1780" tag="operation_1780" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1784" tag="operation_1784" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1789" tag="operation_1789" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1792" tag="operation_1792" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1796" tag="operation_1796" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1801" tag="operation_1801" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1804" tag="operation_1804" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile &amp;#010;@return KisPixel " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1807" tag="operation_1807" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisChannelInfoSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1808" tag="operation_1808" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1809" tag="operation_1809" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1810" tag="operation_1810" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1811" tag="operation_1811" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1812" tag="operation_1812" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1813" tag="operation_1813" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex &amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure &amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1827" tag="operation_1827" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1830" tag="operation_1830" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1836" tag="operation_1836" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1841" tag="operation_1841" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1845" tag="operation_1845" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCompositeOpList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1846" tag="operation_1846" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1857" tag="operation_1857" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param srcProfile &amp;#010;@param dst &amp;#010;@param dstColorStrategy &amp;#010;@param dstProfile &amp;#010;@param numPixels &amp;#010;@param renderingIntent &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1865" tag="operation_1865" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1875" tag="operation_1875" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1885" tag="operation_1885" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1775" field_type="144905952" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisAbstractColorSpace = new KisAbstractColorSpace ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAbstractColorSpace to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAbstractColorSpace from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1775" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1775" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1895" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1895" tag="tblock_0" canDelete="false" indentLevel="1" text="private vKisChannelInfoSP m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="12050" tqparent_class="12050" fileExt=".java" fileName="KisColorSpaceDescriptor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="12050" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisColorSpaceDescriptor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisColorSpaceDescriptor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ </codegenerator>
+ <codegenerator language="Cpp" >
+ <classifiercodedocument writeOutCode="true" package="" id="11" tqparent_class="11" fileExt=".cpp" fileName="qpainter" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qpainter.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="12" tqparent_class="12" fileExt=".cpp" fileName="kisiteratorpixel" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisiteratorpixel.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="13" tqparent_class="13" fileExt=".cpp" fileName="kispixel" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kispixel.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="14" tqparent_class="14" fileExt=".cpp" fileName="kispixelro" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kispixelro.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="15" tqparent_class="15" fileExt=".cpp" fileName="kisprofilepair" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisprofilepair.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="17" tqparent_class="17" fileExt=".cpp" fileName="transform" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;transform.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="23" text="return dstType;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="23" text="dstType = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="19" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="19" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="21" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="21" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="22" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="22" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="23" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="23" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="23" text="return dstType;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="23" text="dstType = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="24" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="24" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="18" tqparent_class="18" fileExt=".cpp" fileName="kisprofile" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisprofile.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="20" tqparent_class="20" fileExt=".cpp" fileName="q_uint32" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;q_uint32.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="25" tqparent_class="25" fileExt=".cpp" fileName="struct kiscoloradjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;struct kiscoloradjustment.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="26" tqparent_class="26" fileExt=".cpp" fileName="kisabstractcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisabstractcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="234" text="return m_id;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="234" text="m_id = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@return the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@param value the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_19" canDelete="false" writeOutText="false" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@param value the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_20" canDelete="false" writeOutText="false" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@return the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_21" canDelete="false" writeOutText="false" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@param value the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="31" tag="operation_31" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Create a new colorspace strategy.&amp;#010;&amp;#010;@param id The Chalk identification of this color model.&amp;#010;@param cmType The littlecms colorstrategy type we wrap.&amp;#010;@param colorSpaceSignature The icc signature for the colorspace we are." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="40" tag="operation_40" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="41" tag="operation_41" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="//========== Channels =====================================================//// Return a vector describing all the channels this color model has." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="The total number of channels for a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="45" tag="operation_45" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="The total number of color channels (excludes alpha and substance) for a single&amp;#010;pixel in this color model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="46" tag="operation_46" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="47" tag="operation_47" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="The size in bytes of a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="48" tag="operation_48" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Whether this color model has a channel of type ALPHA" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="50" tag="operation_50" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="51" tag="operation_51" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="52" tag="operation_52" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Return a string with the channel's value suitable for display in the gui." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="58" tag="operation_58" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Return a string with the channel's value with integer&amp;#010;channels normalised to the floating point range 0 to 1, if appropriate." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="61" tag="operation_61" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="62" tag="operation_62" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="64" tag="operation_64" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="65" tag="operation_65" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="67" tag="operation_67" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="68" tag="operation_68" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="//========== Capabilities =================================================///**&amp;#010;Returns the list of user-visible composite ops supported by this colourspace. Internal&amp;#010;ops such as COPY, CLEAR, and ERASE, are not included as these make no sense&amp;#010;for layers in the full image model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="70" tag="operation_70" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="71" tag="operation_71" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="//========== Display profiles =============================================///**&amp;#010;Get a list of profiles that apply to this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="73" tag="operation_73" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Return the number of profiles available for this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="74" tag="operation_74" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="//================= Conversion functions ==================================///**&amp;#010;The nativeColor methods take a given color defined as an RGB QColor&amp;#010;and fills a byte array with the corresponding color in the&amp;#010;the colorspace managed by this strategy.&amp;#010;&amp;#010;The profile parameter is the profile of the paint device; the other profile&amp;#010;is the display profile -- since we are moving from QColor&amp;#010;that have most likely been picked from the display itself.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="82" tag="operation_82" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="88" tag="operation_88" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="The toQColor methods take a byte array that is at least pixelSize() long&amp;#010;and converts the contents to a QColor, using the given profile as a source&amp;#010;profile and the display profile as a destination profile.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile&amp;#010;" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="93" tag="operation_93" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="99" tag="operation_99" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the alpha value of the given pixel.&amp;#010;XXX: Change to float/int to match setAlpha() when that changes." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="102" tag="operation_102" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="105" tag="operation_105" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="108" tag="operation_108" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="This function is used to convert a KisPixelRepresentation from this color strategy to the specified&amp;#010;color strategy." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="113" tag="operation_113" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convert the pixels in data to (8-bit BGRA) QImage using the specified profiles.&amp;#010;The pixels are supposed to be encoded in this color model.&amp;#010;&amp;#010;@param data A pointer to a contiguous memory region containing width * height pixels&amp;#010;@param width in pixels&amp;#010;@param height in pixels&amp;#010;@param srcProfile source profile&amp;#010;@param dstProfile destination profile&amp;#010;@param renderingIntent the rendering intent&amp;#010;@param exposure The exposure setting for rendering a preview of a high dynamic range image." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="122" tag="operation_122" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="131" tag="operation_131" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convert the value of the channel at the specified position into&amp;#010;an 8-bit value." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="134" tag="operation_134" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convert the value of the channel at the specified position into&amp;#010;a 16-bit value. This may be upscaling or downscaling, depending&amp;#010;on the defined value of the channel" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="137" tag="operation_137" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="//============================== Manipulation fucntions ==========================//// // The manipulation functions have default implementations that _convert_ the pixel// to a QColor and back. Reimplement these methods in your color strategy!///**&amp;#010;Set the alpha channel to the given value.&amp;#010;&amp;#010;pixels -- a pointer to the pixels that will have their alpha set to this value&amp;#010;alpha -- XXX: This must become int or float&amp;#010;nPixels -- the number of pixels&amp;#010;&amp;#010;XXX: Also add a function that modifies the current alpha with the given alpha, i.e., premultiply them?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="141" tag="operation_141" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Applies the specified 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="145" tag="operation_145" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Applies the inverted 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="149" tag="operation_149" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Create an adjustment object for adjusting the brightness and contrast&amp;#010;transferValues is a 256 bins array with values from 0 to 0xFFFF" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="155" tag="operation_155" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Apply the adjustment created with onr of the other functions" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="160" tag="operation_160" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="// XXX: What with alpha channels? YYY: Add an overloaded function that takes alpha into account?/**&amp;#010;Get the difference between 2 colors, normalized in the range (0,255)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="164" tag="operation_164" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Mix the colors given their weights and return in dst&amp;#010;The sum of weights is assumed 255" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="170" tag="operation_170" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convolve the given array of pointers to pixels and return the result&amp;#010;in dst. The kernel values are clamped between -128 and 128" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="181" tag="operation_181" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="188" tag="operation_188" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Calculate the intensity of the given pixel, scaled down to the range 0-255. XXX: Maybe this should be more flexible" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="190" tag="operation_190" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Compose two arrays of pixels together. If source and target&amp;#010;are not the same colour model, the source pixels will be&amp;#010;converted to the target model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="206" tag="operation_206" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Compose two byte arrays containing pixels in the same color&amp;#010;model together." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="217" tag="operation_217" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="223" tag="operation_223" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="224" tag="operation_224" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="239" tag="operation_239" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="242" tag="operation_242" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="227" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="227" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="228" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="228" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="229" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="229" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="230" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="230" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="231" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="231" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="232" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="232" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="233" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="233" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="234" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="234" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="234" text="return m_id;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="234" text="m_id = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="235" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// The colorspace type as defined by littlecms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="235" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@return the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@param value the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="236" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="236" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_18" canDelete="false" writeOutText="false" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_19" canDelete="false" writeOutText="false" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@param value the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="238" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// Cache for existing transforms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="238" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_20" canDelete="false" writeOutText="false" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@return the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_21" canDelete="false" writeOutText="false" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@param value the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="245" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="245" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_22" canDelete="false" writeOutText="false" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_23" canDelete="false" writeOutText="false" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="246" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="246" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_24" canDelete="false" writeOutText="false" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_25" canDelete="false" writeOutText="false" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="27" tqparent_class="27" fileExt=".cpp" fileName="kshared" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kshared.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="33" tqparent_class="33" fileExt=".cpp" fileName="kisid" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisid.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="36" tqparent_class="36" fileExt=".cpp" fileName="dword" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;dword.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="38" tqparent_class="38" fileExt=".cpp" fileName="iccolorspacesignature" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;iccolorspacesignature.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="42" tqparent_class="42" fileExt=".cpp" fileName="vkischannelinfosp" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;vkischannelinfosp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="44" tqparent_class="44" fileExt=".cpp" fileName="q_int32" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;q_int32.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="49" tqparent_class="49" fileExt=".cpp" fileName="bool" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;bool.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="53" tqparent_class="53" fileExt=".cpp" fileName="q_uint8" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;q_uint8.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="57" tqparent_class="57" fileExt=".cpp" fileName="qstring" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qstring.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="69" tqparent_class="69" fileExt=".cpp" fileName="kiscompositeoplist" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="72" tqparent_class="72" fileExt=".cpp" fileName="vkisprofilesp" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;vkisprofilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="75" tqparent_class="75" fileExt=".cpp" fileName="qcolor" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qcolor.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="80" tqparent_class="80" fileExt=".cpp" fileName="kisprofilesp" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisprofilesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="84" tqparent_class="84" fileExt=".cpp" fileName="quantum" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;quantum.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="121" tqparent_class="121" fileExt=".cpp" fileName="qimage" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qimage.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="150" tqparent_class="150" fileExt=".cpp" fileName="q_uint16" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;q_uint16.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="153" tqparent_class="153" fileExt=".cpp" fileName="kiscoloradjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiscoloradjustment.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="163" tqparent_class="163" fileExt=".cpp" fileName="q_int8" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;q_int8.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="175" tqparent_class="175" fileExt=".cpp" fileName="enumchannelflags" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;enumchannelflags.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="201" tqparent_class="201" fileExt=".cpp" fileName="kiscompositeop" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiscompositeop.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="222" tqparent_class="222" fileExt=".cpp" fileName="cmshtransform" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;cmshtransform.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="226" tqparent_class="226" fileExt=".cpp" fileName="qstringlist" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qstringlist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kisabstractcolorspace" id="237" tqparent_class="237" fileExt=".cpp" fileName="transformmap" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;transformmap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="247" tqparent_class="247" fileExt=".cpp" fileName="kisu8basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisu8basecolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="251" tag="operation_251" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="255" tqparent_class="255" fileExt=".cpp" fileName="kisalphacolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisalphacolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="349" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="259" tag="operation_259" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="260" tag="operation_260" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="261" tag="operation_261" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="265" tag="operation_265" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="270" tag="operation_270" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="273" tag="operation_273" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="277" tag="operation_277" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="282" tag="operation_282" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="285" tag="operation_285" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="288" tag="operation_288" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="291" tag="operation_291" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="296" tag="operation_296" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="297" tag="operation_297" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="298" tag="operation_298" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="299" tag="operation_299" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="300" tag="operation_300" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="301" tag="operation_301" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="304" tag="operation_304" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="307" tag="operation_307" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="315" tag="operation_315" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="321" tag="operation_321" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="329" tag="operation_329" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="337" tag="operation_337" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="348" tag="operation_348" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="349" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="349" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="349" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="350" tqparent_class="350" fileExt=".cpp" fileName="kisf32basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisf32basecolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="354" tag="operation_354" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="358" tqparent_class="358" fileExt=".cpp" fileName="kisu16basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisu16basecolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="365" tag="operation_365" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="363" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="363" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="364" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="364" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="369" tqparent_class="369" fileExt=".cpp" fileName="kisxyzcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisxyzcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="566" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="378" tag="operation_378" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="379" tag="operation_379" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="380" tag="operation_380" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="384" tag="operation_384" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="389" tag="operation_389" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="392" tag="operation_392" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="396" tag="operation_396" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="400" tag="operation_400" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="405" tag="operation_405" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="408" tag="operation_408" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="411" tag="operation_411" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="414" tag="operation_414" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="419" tag="operation_419" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="420" tag="operation_420" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="421" tag="operation_421" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="422" tag="operation_422" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="423" tag="operation_423" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="424" tag="operation_424" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="427" tag="operation_427" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="430" tag="operation_430" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="438" tag="operation_438" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="444" tag="operation_444" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="455" tag="operation_455" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="456" tag="operation_456" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="466" tag="operation_466" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="476" tag="operation_476" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="486" tag="operation_486" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="506" tag="operation_506" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="516" tag="operation_516" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="526" tag="operation_526" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="536" tag="operation_536" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="546" tag="operation_546" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="556" tag="operation_556" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="566" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="566" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="566" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="567" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="567" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="568" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="570" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="570" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="571" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="571" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="572" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="572" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="573" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="573" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="574" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="574" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kisrgbu16colorspace" id="373" tqparent_class="373" fileExt=".cpp" fileName="pixel" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;pixel.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="374" text="return X;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="374" text="X = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="375" text="return Y;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="375" text="Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="376" text="return Z;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="376" text="Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="377" text="return alpha;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="377" text="alpha = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1130" text="return blue;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1130" text="blue = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1131" text="return green;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1131" text="green = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1132" text="return red;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1132" text="red = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="374" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="374" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="374" text="return X;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="374" text="X = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="375" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="375" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="375" text="return Y;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="375" text="Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="376" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="376" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="376" text="return Z;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="376" text="Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="377" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="377" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="377" text="return alpha;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="377" text="alpha = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1130" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1130" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1130" text="return blue;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1130" text="blue = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1131" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1131" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1131" text="return green;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1131" text="green = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1132" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1132" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1132" text="return red;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1132" text="red = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="575" tqparent_class="575" fileExt=".cpp" fileName="kiscmykcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiscmykcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="660" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="579" tag="operation_579" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="581" tag="operation_581" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="585" tag="operation_585" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="590" tag="operation_590" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="593" tag="operation_593" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="597" tag="operation_597" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="601" tag="operation_601" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="606" tag="operation_606" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="612" tag="operation_612" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="617" tag="operation_617" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="618" tag="operation_618" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="620" tag="operation_620" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="622" tag="operation_622" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="625" tag="operation_625" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="628" tag="operation_628" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="636" tag="operation_636" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="639" tag="operation_639" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="651" tag="operation_651" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="652" tag="operation_652" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="660" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="660" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="661" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="662" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="663" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="663" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_16" canDelete="false" writeOutText="false" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_17" canDelete="false" writeOutText="false" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="664" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="664" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="665" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="665" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="666" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="666" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="667" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="667" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="668" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="668" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="669" tqparent_class="669" fileExt=".cpp" fileName="kisgraycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisgraycolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="860" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="673" tag="operation_673" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="674" tag="operation_674" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="675" tag="operation_675" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="679" tag="operation_679" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="683" tag="operation_683" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="687" tag="operation_687" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="692" tag="operation_692" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="703" tag="operation_703" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="711" tag="operation_711" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="714" tag="operation_714" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="717" tag="operation_717" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="722" tag="operation_722" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="723" tag="operation_723" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="724" tag="operation_724" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="725" tag="operation_725" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="726" tag="operation_726" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="727" tag="operation_727" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="730" tag="operation_730" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="733" tag="operation_733" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="741" tag="operation_741" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="747" tag="operation_747" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="758" tag="operation_758" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="759" tag="operation_759" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="769" tag="operation_769" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="789" tag="operation_789" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="799" tag="operation_799" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="809" tag="operation_809" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="819" tag="operation_819" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="839" tag="operation_839" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="849" tag="operation_849" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="860" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="860" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="861" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="861" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="862" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="862" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="859" tqparent_class="859" fileExt=".cpp" fileName="kisgraycolorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisgraycolorspacetester.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="863" tqparent_class="863" fileExt=".cpp" fileName="rgbf32plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;rgbf32plugin.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="869" tag="operation_869" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="877" tag="operation_877" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="878" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="878" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="864" tqparent_class="864" fileExt=".cpp" fileName="kparts" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kparts.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kparts" id="865" tqparent_class="865" fileExt=".cpp" fileName="plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;plugin.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="870" tqparent_class="870" fileExt=".cpp" fileName="qobject" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qobject.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="879" tqparent_class="879" fileExt=".cpp" fileName="kisf32rgbcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisf32rgbcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="884" tag="operation_884" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="885" tag="operation_885" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="891" tag="operation_891" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="898" tag="operation_898" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="902" tag="operation_902" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="907" tag="operation_907" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="910" tag="operation_910" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="914" tag="operation_914" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="918" tag="operation_918" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="923" tag="operation_923" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="932" tag="operation_932" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="939" tag="operation_939" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="940" tag="operation_940" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="941" tag="operation_941" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="942" tag="operation_942" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="956" tag="operation_956" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="957" tag="operation_957" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="963" tag="operation_963" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="974" tag="operation_974" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="994" tag="operation_994" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1014" tag="operation_1014" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1024" tag="operation_1024" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1034" tag="operation_1034" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1044" tag="operation_1044" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1074" tag="operation_1074" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1104" tag="operation_1104" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1114" tag="operation_1114" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1125" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1125" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1126" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1126" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1127" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1127" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1128" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1128" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1129" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1129" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1124" tqparent_class="1124" fileExt=".cpp" fileName="kisf32rgbcolorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisf32rgbcolorspacetester.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1133" tqparent_class="1133" fileExt=".cpp" fileName="kisf32rgbcolorspacesp" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisf32rgbcolorspacesp.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1134" tqparent_class="1134" fileExt=".cpp" fileName="kisrgbu16colorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisrgbu16colorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1140" tag="operation_1140" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1141" tag="operation_1141" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1142" tag="operation_1142" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1148" tag="operation_1148" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1154" tag="operation_1154" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1158" tag="operation_1158" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1163" tag="operation_1163" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1166" tag="operation_1166" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1170" tag="operation_1170" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1174" tag="operation_1174" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1179" tag="operation_1179" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1185" tag="operation_1185" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1188" tag="operation_1188" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1193" tag="operation_1193" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1195" tag="operation_1195" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1197" tag="operation_1197" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1198" tag="operation_1198" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1201" tag="operation_1201" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1204" tag="operation_1204" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1212" tag="operation_1212" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1213" tag="operation_1213" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1219" tag="operation_1219" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1230" tag="operation_1230" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1240" tag="operation_1240" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1250" tag="operation_1250" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1260" tag="operation_1260" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1270" tag="operation_1270" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1280" tag="operation_1280" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1290" tag="operation_1290" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1300" tag="operation_1300" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1310" tag="operation_1310" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1320" tag="operation_1320" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1330" tag="operation_1330" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1340" tag="operation_1340" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1350" tag="operation_1350" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1360" tag="operation_1360" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1370" tag="operation_1370" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1139" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1381" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1381" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1382" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1382" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1383" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1383" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1384" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1384" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1385" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1385" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1380" tqparent_class="1380" fileExt=".cpp" fileName="kisrgbu16colorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisrgbu16colorspacetester.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1386" tqparent_class="1386" fileExt=".cpp" fileName="kisrgbcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kisrgbcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1390" tag="operation_1390" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1391" tag="operation_1391" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1392" tag="operation_1392" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1398" tag="operation_1398" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1404" tag="operation_1404" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1408" tag="operation_1408" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1413" tag="operation_1413" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1416" tag="operation_1416" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1420" tag="operation_1420" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1424" tag="operation_1424" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1429" tag="operation_1429" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1432" tag="operation_1432" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1435" tag="operation_1435" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1438" tag="operation_1438" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1443" tag="operation_1443" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1452" tag="operation_1452" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1453" tag="operation_1453" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1454" tag="operation_1454" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1455" tag="operation_1455" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1456" tag="operation_1456" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1459" tag="operation_1459" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1462" tag="operation_1462" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1470" tag="operation_1470" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1471" tag="operation_1471" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1473" tag="operation_1473" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1478" tag="operation_1478" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1485" tag="operation_1485" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1487" tag="operation_1487" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1498" tag="operation_1498" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1508" tag="operation_1508" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1528" tag="operation_1528" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1538" tag="operation_1538" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1558" tag="operation_1558" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1568" tag="operation_1568" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1578" tag="operation_1578" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1598" tag="operation_1598" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1608" tag="operation_1608" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1618" tag="operation_1618" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1628" tag="operation_1628" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1638" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1638" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1639" tqparent_class="1639" fileExt=".cpp" fileName="wetpix" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;wetpix.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1640" tqparent_class="1640" fileExt=".cpp" fileName="wetpixdbl" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;wetpixdbl.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1641" tqparent_class="1641" fileExt=".cpp" fileName="wetpack" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;wetpack.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1642" tqparent_class="1642" fileExt=".cpp" fileName="_wetpix" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;_wetpix.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1643" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1643" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1644" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1644" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1645" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1645" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1646" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1646" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1647" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1647" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1648" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1648" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1649" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1649" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="1650" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="1650" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1643" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1643" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1643" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1643" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1644" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1644" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1644" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1644" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1645" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1645" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1645" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1645" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1646" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1646" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1646" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1646" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1647" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1647" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1647" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1648" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1648" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1648" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1649" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1649" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1649" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1650" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1650" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="1650" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="1650" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1651" tqparent_class="1651" fileExt=".cpp" fileName="_wetpack" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;_wetpack.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1652" text="return paint;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of paint&amp;#010;Paint layer&amp;#010;@return the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1652" text="paint = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of paint&amp;#010;Paint layer&amp;#010;@param value the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@return the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@param value the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1652" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Paint layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1652" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1652" text="return paint;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of paint&amp;#010;Paint layer&amp;#010;@return the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1652" text="paint = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of paint&amp;#010;Paint layer&amp;#010;@param value the value of paint" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1653" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Adsorbtion layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1653" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@return the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@param value the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1654" tqparent_class="1654" fileExt=".cpp" fileName="_wetpixdbl" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;_wetpixdbl.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1655" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1655" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1656" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1656" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1657" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1657" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1658" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1658" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1659" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1659" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1660" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1660" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1661" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1661" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="1662" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of h&amp;#010;Height of paper surface&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="1662" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of h&amp;#010;Height of paper surface&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1655" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1655" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1655" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1655" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1656" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1656" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1656" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1656" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1657" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1657" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1657" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1657" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1658" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1658" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1658" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1658" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1659" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1659" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1659" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1659" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1660" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1660" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1660" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1661" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1661" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1661" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Height of paper surface" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1662" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_14" canDelete="false" writeOutText="false" classfield_id="1662" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" text="Get the value of h&amp;#010;Height of paper surface&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_15" canDelete="false" writeOutText="false" classfield_id="1662" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" text="Set the value of h&amp;#010;Height of paper surface&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1663" tqparent_class="1663" fileExt=".cpp" fileName="kiswetcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiswetcolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1762" text="return phase;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1762" text="phase = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1667" tag="operation_1667" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1668" tag="operation_1668" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1669" tag="operation_1669" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="// Semi-clever: we have only fifteen wet paint colors that are mapped to the// qcolors that are put in the painter by the special wet paint palette. Other// QColors are mapped to plain water..." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1673" tag="operation_1673" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1678" tag="operation_1678" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1681" tag="operation_1681" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1685" tag="operation_1685" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1690" tag="operation_1690" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1693" tag="operation_1693" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1696" tag="operation_1696" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1701" tag="operation_1701" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1702" tag="operation_1702" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1703" tag="operation_1703" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1704" tag="operation_1704" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1705" tag="operation_1705" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1706" tag="operation_1706" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1707" tag="operation_1707" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1710" tag="operation_1710" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1713" tag="operation_1713" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1721" tag="operation_1721" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1724" tag="operation_1724" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1730" tag="operation_1730" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1731" tag="operation_1731" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1733" tag="operation_1733" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1735" tag="operation_1735" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1746" tag="operation_1746" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="// This was static, but since we have only one instance of the color strategy,// it can be just as well a private member variable." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1747" tag="operation_1747" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" text="// Convert a single pixel from its wet representation to rgb" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1751" tag="operation_1751" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1755" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1757" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_2" canDelete="false" writeOutText="false" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_3" canDelete="false" writeOutText="false" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1758" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1758" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_4" canDelete="false" writeOutText="false" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_5" canDelete="false" writeOutText="false" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1760" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_6" canDelete="false" writeOutText="false" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_7" canDelete="false" writeOutText="false" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1761" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_8" canDelete="false" writeOutText="false" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_9" canDelete="false" writeOutText="false" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1762" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_10" canDelete="false" writeOutText="false" classfield_id="1762" text="return phase;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_11" canDelete="false" writeOutText="false" classfield_id="1762" text="phase = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1763" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_12" canDelete="false" writeOutText="false" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_13" canDelete="false" writeOutText="false" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1759" tqparent_class="1759" fileExt=".cpp" fileName="qmap" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;qmap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="1771" tqparent_class="1771" fileExt=".cpp" fileName="cell" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;cell.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="1772" tqparent_class="1772" fileExt=".cpp" fileName="cell" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;cell.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="1765" tqparent_class="1765" fileExt=".cpp" fileName="enumdirection" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;enumdirection.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1774" tqparent_class="1774" fileExt=".cpp" fileName="kiswetstickycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiswetstickycolorspace.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeoperation tqparent_id="1778" tag="operation_1778" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1779" tag="operation_1779" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1780" tag="operation_1780" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1784" tag="operation_1784" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1789" tag="operation_1789" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1792" tag="operation_1792" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1796" tag="operation_1796" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1801" tag="operation_1801" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1804" tag="operation_1804" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1807" tag="operation_1807" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1808" tag="operation_1808" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1809" tag="operation_1809" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1810" tag="operation_1810" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1811" tag="operation_1811" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1812" tag="operation_1812" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1813" tag="operation_1813" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1827" tag="operation_1827" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1830" tag="operation_1830" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1836" tag="operation_1836" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1841" tag="operation_1841" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1845" tag="operation_1845" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1846" tag="operation_1846" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1857" tag="operation_1857" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1865" tag="operation_1865" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1875" tag="operation_1875" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1885" tag="operation_1885" canDelete="false" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1895" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1895" tag="" canDelete="false" indentLevel="1" text="FIX ME;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" writeOutText="false" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" writeOutText="false" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <codedocument writeOutCode="false" package="" id="Makefile_DOC" fileExt="" fileName="Makefile" >
+ <textblocks/>
+ <header>
+ <codecomment tag="" />
+ </header>
+ </codedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="12050" tqparent_class="12050" fileExt=".cpp" fileName="kiscolorspacedescriptor" >
+ <textblocks>
+ <codeblockwithcomments tag="includes" text="#include &quot;kiscolorspacedescriptor.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="constructionMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Constructors/Destructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="otherMethodsBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Methods" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader11" tqparent_class="11" fileExt=".h" fileName="qpainter" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QPAINTER_H&amp;#010;#define QPAINTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="11" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QPainter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QPainter ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QPAINTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader12" tqparent_class="12" fileExt=".h" fileName="kisiteratorpixel" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISITERATORPIXEL_H&amp;#010;#define KISITERATORPIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="12" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisIteratorPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisIteratorPixel ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISITERATORPIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader13" tqparent_class="13" fileExt=".h" fileName="kispixel" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPIXEL_H&amp;#010;#define KISPIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="13" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisPixel ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader14" tqparent_class="14" fileExt=".h" fileName="kispixelro" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPIXELRO_H&amp;#010;#define KISPIXELRO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="14" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisPixelRO&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisPixelRO ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPIXELRO_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader15" tqparent_class="15" fileExt=".h" fileName="kisprofilepair" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPROFILEPAIR_H&amp;#010;#define KISPROFILEPAIR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="15" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisProfilePair&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisProfilePair ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPROFILEPAIR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader17" tqparent_class="17" fileExt=".h" fileName="transform" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef TRANSFORM_H&amp;#010;#define TRANSFORM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisprofile.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="17" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class transform&amp;#010;// This would be better, I guess." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="19" tag="tblock_0" canDelete="false" indentLevel="1" text=" KisProfile srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="21" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT32 srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="22" tag="tblock_2" canDelete="false" indentLevel="1" text=" KisProfile dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="23" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT32 dstType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="24" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_UINT32 renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="transform ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="23" text="return dstType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="23" text="dstType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //TRANSFORM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="19" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="19" tag="tblock_0" canDelete="false" indentLevel="1" text=" KisProfile srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="19" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="19" text="return srcProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="19" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="19" text="srcProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="21" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="21" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT32 srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="21" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="21" text="return srcCmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="21" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="21" text="srcCmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="22" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="22" tag="tblock_2" canDelete="false" indentLevel="1" text=" KisProfile dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="22" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="22" text="return dstProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="22" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="22" text="dstProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="23" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="23" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT32 dstType;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="23" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="23" text="return dstType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="23" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="23" text="dstType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="24" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="24" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_UINT32 renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="24" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="24" text="return renderIntent;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="24" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="24" text="renderIntent = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader18" tqparent_class="18" fileExt=".h" fileName="kisprofile" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPROFILE_H&amp;#010;#define KISPROFILE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="18" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisProfile&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisProfile ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPROFILE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader20" tqparent_class="20" fileExt=".h" fileName="q_uint32" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef Q_UINT32_H&amp;#010;#define Q_UINT32_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="20" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Q_UINT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Q_UINT32 ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //Q_UINT32_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader25" tqparent_class="25" fileExt=".h" fileName="struct kiscoloradjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef STRUCT_KISCOLORADJUSTMENT_H&amp;#010;#define STRUCT_KISCOLORADJUSTMENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="25" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class struct KisColorAdjustment&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="struct KisColorAdjustment ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //STRUCT_KISCOLORADJUSTMENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader26" tqparent_class="26" fileExt=".h" fileName="kisabstractcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISABSTRACTCOLORSPACE_H&amp;#010;#define KISABSTRACTCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;dword.h&quot;&amp;#010;#include &quot;iccolorspacesignature.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;kisid.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;#include &quot;vkisprofilesp.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;enumchannelflags.h&quot;&amp;#010;#include &quot;cmshtransform.h&quot;&amp;#010;#include &quot;qstringlist.h&quot;&amp;#010;#include &quot;transformmap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="26" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisAbstractColorSpace&amp;#010;A colorspace strategy is the definition of a certain color model&amp;#010;in Chalk." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisAbstractColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="31" tag="operation_31" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create a new colorspace strategy.&amp;#010;&amp;#010;@param id The Chalk identification of this color model.&amp;#010;@param cmType The littlecms colorstrategy type we wrap.&amp;#010;@param colorSpaceSignature The icc signature for the colorspace we are." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="40" tag="operation_40" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="41" tag="operation_41" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="//========== Channels =====================================================//// Return a vector describing all the channels this color model has." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="The total number of channels for a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="45" tag="operation_45" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="The total number of color channels (excludes alpha and substance) for a single&amp;#010;pixel in this color model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="46" tag="operation_46" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="47" tag="operation_47" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="The size in bytes of a single pixel in this color model" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="48" tag="operation_48" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Whether this color model has a channel of type ALPHA" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="50" tag="operation_50" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="51" tag="operation_51" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="52" tag="operation_52" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Return a string with the channel's value suitable for display in the gui." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="58" tag="operation_58" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Return a string with the channel's value with integer&amp;#010;channels normalised to the floating point range 0 to 1, if appropriate." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="61" tag="operation_61" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="62" tag="operation_62" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="64" tag="operation_64" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="65" tag="operation_65" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param signature " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="67" tag="operation_67" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="68" tag="operation_68" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="//========== Capabilities =================================================///**&amp;#010;Returns the list of user-visible composite ops supported by this colourspace. Internal&amp;#010;ops such as COPY, CLEAR, and ERASE, are not included as these make no sense&amp;#010;for layers in the full image model." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="70" tag="operation_70" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="71" tag="operation_71" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="//========== Display profiles =============================================///**&amp;#010;Get a list of profiles that apply to this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="73" tag="operation_73" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Return the number of profiles available for this color space" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="74" tag="operation_74" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="//================= Conversion functions ==================================///**&amp;#010;The nativeColor methods take a given color defined as an RGB QColor&amp;#010;and fills a byte array with the corresponding color in the&amp;#010;the colorspace managed by this strategy.&amp;#010;&amp;#010;The profile parameter is the profile of the paint device; the other profile&amp;#010;is the display profile -- since we are moving from QColor&amp;#010;that have most likely been picked from the display itself.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="82" tag="operation_82" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="88" tag="operation_88" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="The toQColor methods take a byte array that is at least pixelSize() long&amp;#010;and converts the contents to a QColor, using the given profile as a source&amp;#010;profile and the display profile as a destination profile.&amp;#010;&amp;#010;XXX: We actually do not use the display yet, nor the paint device profile&amp;#010;" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="93" tag="operation_93" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="99" tag="operation_99" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the alpha value of the given pixel.&amp;#010;XXX: Change to float/int to match setAlpha() when that changes." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="102" tag="operation_102" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="105" tag="operation_105" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="108" tag="operation_108" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="This function is used to convert a KisPixelRepresentation from this color strategy to the specified&amp;#010;color strategy." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="113" tag="operation_113" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convert the pixels in data to (8-bit BGRA) QImage using the specified profiles.&amp;#010;The pixels are supposed to be encoded in this color model.&amp;#010;&amp;#010;@param data A pointer to a contiguous memory region containing width * height pixels&amp;#010;@param width in pixels&amp;#010;@param height in pixels&amp;#010;@param srcProfile source profile&amp;#010;@param dstProfile destination profile&amp;#010;@param renderingIntent the rendering intent&amp;#010;@param exposure The exposure setting for rendering a preview of a high dynamic range image." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="122" tag="operation_122" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="131" tag="operation_131" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convert the value of the channel at the specified position into&amp;#010;an 8-bit value." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="134" tag="operation_134" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convert the value of the channel at the specified position into&amp;#010;a 16-bit value. This may be upscaling or downscaling, depending&amp;#010;on the defined value of the channel" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="137" tag="operation_137" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="//============================== Manipulation fucntions ==========================//// // The manipulation functions have default implementations that _convert_ the pixel// to a QColor and back. Reimplement these methods in your color strategy!///**&amp;#010;Set the alpha channel to the given value.&amp;#010;&amp;#010;pixels -- a pointer to the pixels that will have their alpha set to this value&amp;#010;alpha -- XXX: This must become int or float&amp;#010;nPixels -- the number of pixels&amp;#010;&amp;#010;XXX: Also add a function that modifies the current alpha with the given alpha, i.e., premultiply them?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="141" tag="operation_141" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Applies the specified 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="145" tag="operation_145" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Applies the inverted 8-bit alpha tqmask to the pixels. We assume that there are just&amp;#010;as many alpha values as pixels but we do not check this." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="149" tag="operation_149" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Create an adjustment object for adjusting the brightness and contrast&amp;#010;transferValues is a 256 bins array with values from 0 to 0xFFFF" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="155" tag="operation_155" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Apply the adjustment created with onr of the other functions" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="160" tag="operation_160" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// XXX: What with alpha channels? YYY: Add an overloaded function that takes alpha into account?/**&amp;#010;Get the difference between 2 colors, normalized in the range (0,255)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="164" tag="operation_164" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Mix the colors given their weights and return in dst&amp;#010;The sum of weights is assumed 255" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="170" tag="operation_170" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convolve the given array of pointers to pixels and return the result&amp;#010;in dst. The kernel values are clamped between -128 and 128" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="181" tag="operation_181" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="188" tag="operation_188" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Calculate the intensity of the given pixel, scaled down to the range 0-255. XXX: Maybe this should be more flexible" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="190" tag="operation_190" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Compose two arrays of pixels together. If source and target&amp;#010;are not the same colour model, the source pixels will be&amp;#010;converted to the target model." />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="227" tag="tblock_0" canDelete="false" indentLevel="1" text=" QStringList m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="228" tag="tblock_1" canDelete="false" indentLevel="1" text=" KisProfileSP m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="229" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="230" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_INT32 m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="231" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_INT32 m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="232" tag="tblock_5" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="233" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="206" tag="operation_206" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Compose two byte arrays containing pixels in the same color&amp;#010;model together." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="217" tag="operation_217" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dstColorStrategy &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="223" tag="operation_223" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="224" tag="operation_224" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="234" tag="tblock_7" canDelete="false" indentLevel="1" text=" KisID m_id;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="235" tag="tblock_8" canDelete="false" indentLevel="1" text=" DWORD m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="236" tag="tblock_9" canDelete="false" indentLevel="1" text=" icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="238" tag="tblock_10" canDelete="false" indentLevel="1" text=" TransformMap m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="245" tag="tblock_11" canDelete="false" indentLevel="1" text=" Q_UINT32 m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="246" tag="tblock_12" canDelete="false" indentLevel="1" text=" Q_UINT8* m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="234" text="return m_id;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="234" text="m_id = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@return the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@param value the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@param value the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@return the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@param value the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="239" tag="operation_239" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="242" tag="operation_242" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISABSTRACTCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="227" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="227" tag="tblock_0" canDelete="false" indentLevel="1" text=" QStringList m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="227" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="227" text="return m_profileFilenames;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="227" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="227" text="m_profileFilenames = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="228" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="228" tag="tblock_1" canDelete="false" indentLevel="1" text=" KisProfileSP m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="228" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="228" text="return m_defaultProfile;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="228" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="228" text="m_defaultProfile = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="229" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="229" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="229" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="229" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="229" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="229" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="230" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="230" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_INT32 m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="230" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="230" text="return m_alphaPos;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="230" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="230" text="m_alphaPos = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="231" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="231" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_INT32 m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="231" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="231" text="return m_alphaSize;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="231" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="231" text="m_alphaSize = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="232" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="232" tag="tblock_5" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="232" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="232" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="232" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="232" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="233" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="233" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="233" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="233" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="233" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="233" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="234" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="234" tag="tblock_7" canDelete="false" indentLevel="1" text=" KisID m_id;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="234" tag="hblock_tag_26" canDelete="false" indentLevel="1" classfield_id="234" text="return m_id;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="234" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="234" text="m_id = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="235" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// The colorspace type as defined by littlecms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="235" tag="tblock_8" canDelete="false" indentLevel="1" text=" DWORD m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// The colorspace type as defined by littlecms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="235" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="235" text="return m_cmType;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@return the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="235" tag="hblock_tag_29" canDelete="false" indentLevel="1" classfield_id="235" text="m_cmType = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_cmType&amp;#010;// The colorspace type as defined by littlecms&amp;#010;@param value the value of m_cmType" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="236" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="236" tag="tblock_9" canDelete="false" indentLevel="1" text=" icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// The colorspace signature as defined in icm/icc files" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="236" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="236" text="return m_colorSpaceSignature;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="236" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="236" text="m_colorSpaceSignature = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_colorSpaceSignature&amp;#010;// The colorspace signature as defined in icm/icc files&amp;#010;@param value the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="238" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// Cache for existing transforms" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="238" tag="tblock_10" canDelete="false" indentLevel="1" text=" TransformMap m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// Cache for existing transforms" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="238" tag="hblock_tag_32" canDelete="false" indentLevel="1" classfield_id="238" text="return m_transforms;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@return the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="238" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="238" text="m_transforms = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_transforms&amp;#010;// Cache for existing transforms&amp;#010;@param value the value of m_transforms" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="245" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="245" tag="tblock_11" canDelete="false" indentLevel="1" text=" Q_UINT32 m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="245" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="245" text="return m_cachesize;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="245" tag="hblock_tag_35" canDelete="false" indentLevel="1" classfield_id="245" text="m_cachesize = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="246" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="246" tag="tblock_12" canDelete="false" indentLevel="1" text=" Q_UINT8* m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="246" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="246" text="return m_conversionCache;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="246" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="246" text="m_conversionCache = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader27" tqparent_class="27" fileExt=".h" fileName="kshared" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KSHARED_H&amp;#010;#define KSHARED_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="27" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KShared&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KShared ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KSHARED_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader33" tqparent_class="33" fileExt=".h" fileName="kisid" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISID_H&amp;#010;#define KISID_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="33" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisID&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisID ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISID_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader36" tqparent_class="36" fileExt=".h" fileName="dword" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef DWORD_H&amp;#010;#define DWORD_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="36" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class DWORD&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="DWORD ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //DWORD_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader38" tqparent_class="38" fileExt=".h" fileName="iccolorspacesignature" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef ICCOLORSPACESIGNATURE_H&amp;#010;#define ICCOLORSPACESIGNATURE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="38" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class icColorSpaceSignature&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="icColorSpaceSignature ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //ICCOLORSPACESIGNATURE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader42" tqparent_class="42" fileExt=".h" fileName="vkischannelinfosp" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef VKISCHANNELINFOSP_H&amp;#010;#define VKISCHANNELINFOSP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="42" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class vKisChannelInfoSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="vKisChannelInfoSP ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //VKISCHANNELINFOSP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader44" tqparent_class="44" fileExt=".h" fileName="q_int32" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef Q_INT32_H&amp;#010;#define Q_INT32_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="44" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Q_INT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Q_INT32 ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //Q_INT32_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader49" tqparent_class="49" fileExt=".h" fileName="bool" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef BOOL_H&amp;#010;#define BOOL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="49" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class bool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="bool ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //BOOL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader53" tqparent_class="53" fileExt=".h" fileName="q_uint8" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef Q_UINT8_H&amp;#010;#define Q_UINT8_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="53" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Q_UINT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Q_UINT8 ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //Q_UINT8_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader57" tqparent_class="57" fileExt=".h" fileName="qstring" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QSTRING_H&amp;#010;#define QSTRING_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="57" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QString&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QString ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QSTRING_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader69" tqparent_class="69" fileExt=".h" fileName="kiscompositeoplist" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOMPOSITEOPLIST_H&amp;#010;#define KISCOMPOSITEOPLIST_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="69" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisCompositeOpList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisCompositeOpList ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOMPOSITEOPLIST_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader72" tqparent_class="72" fileExt=".h" fileName="vkisprofilesp" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef VKISPROFILESP_H&amp;#010;#define VKISPROFILESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="72" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class vKisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="vKisProfileSP ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //VKISPROFILESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader75" tqparent_class="75" fileExt=".h" fileName="qcolor" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QCOLOR_H&amp;#010;#define QCOLOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="75" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QColor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QColor ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QCOLOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader80" tqparent_class="80" fileExt=".h" fileName="kisprofilesp" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISPROFILESP_H&amp;#010;#define KISPROFILESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="80" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisProfileSP ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISPROFILESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader84" tqparent_class="84" fileExt=".h" fileName="quantum" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QUANTUM_H&amp;#010;#define QUANTUM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="84" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QUANTUM&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QUANTUM ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QUANTUM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader121" tqparent_class="121" fileExt=".h" fileName="qimage" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QIMAGE_H&amp;#010;#define QIMAGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="121" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QImage&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QImage ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QIMAGE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader150" tqparent_class="150" fileExt=".h" fileName="q_uint16" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef Q_UINT16_H&amp;#010;#define Q_UINT16_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="150" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Q_UINT16&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Q_UINT16 ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //Q_UINT16_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader153" tqparent_class="153" fileExt=".h" fileName="kiscoloradjustment" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOLORADJUSTMENT_H&amp;#010;#define KISCOLORADJUSTMENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="153" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisColorAdjustment&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisColorAdjustment ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOLORADJUSTMENT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader163" tqparent_class="163" fileExt=".h" fileName="q_int8" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef Q_INT8_H&amp;#010;#define Q_INT8_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="163" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Q_INT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Q_INT8 ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //Q_INT8_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader175" tqparent_class="175" fileExt=".h" fileName="enumchannelflags" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef ENUMCHANNELFLAGS_H&amp;#010;#define ENUMCHANNELFLAGS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="175" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class enumChannelFlags&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="enumChannelFlags ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //ENUMCHANNELFLAGS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader201" tqparent_class="201" fileExt=".h" fileName="kiscompositeop" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOMPOSITEOP_H&amp;#010;#define KISCOMPOSITEOP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="201" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisCompositeOp&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisCompositeOp ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOMPOSITEOP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader222" tqparent_class="222" fileExt=".h" fileName="cmshtransform" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef CMSHTRANSFORM_H&amp;#010;#define CMSHTRANSFORM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="222" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class cmsHTRANSFORM&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="cmsHTRANSFORM ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //CMSHTRANSFORM_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader226" tqparent_class="226" fileExt=".h" fileName="qstringlist" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QSTRINGLIST_H&amp;#010;#define QSTRINGLIST_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="226" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QStringList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QStringList ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QSTRINGLIST_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kisabstractcolorspace" id="cppheader237" tqparent_class="237" fileExt=".h" fileName="transformmap" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef TRANSFORMMAP_H&amp;#010;#define TRANSFORMMAP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="237" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class TransformMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="TransformMap ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //TRANSFORMMAP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader247" tqparent_class="247" fileExt=".h" fileName="kisu8basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISU8BASECOLORSPACE_H&amp;#010;#define KISU8BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisabstractcolorspace.h&quot;&amp;#010;#include &quot;dword.h&quot;&amp;#010;#include &quot;iccolorspacesignature.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="247" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisU8BaseColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This class is the base for all 8-bit/channel colorspaces" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisU8BaseColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="251" tag="operation_251" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISU8BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader255" tqparent_class="255" fileExt=".h" fileName="kisalphacolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISALPHACOLORSPACE_H&amp;#010;#define KISALPHACOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu8basecolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;enumchannelflags.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="255" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisAlphaColorSpace&amp;#010; Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;The alpha tqmask is a special color strategy that treats all pixels as&amp;#010;alpha value with a colour common to the tqmask. The default color is white." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisAlphaColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="259" tag="operation_259" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="260" tag="operation_260" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="261" tag="operation_261" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="265" tag="operation_265" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="270" tag="operation_270" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="273" tag="operation_273" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="277" tag="operation_277" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="282" tag="operation_282" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="285" tag="operation_285" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="288" tag="operation_288" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="291" tag="operation_291" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="296" tag="operation_296" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="297" tag="operation_297" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="298" tag="operation_298" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="299" tag="operation_299" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="300" tag="operation_300" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="301" tag="operation_301" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="304" tag="operation_304" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="307" tag="operation_307" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="315" tag="operation_315" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="321" tag="operation_321" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param kernelValues &amp;#010;@param channelFlags &amp;#010;@param dst &amp;#010;@param factor &amp;#010;@param offset &amp;#010;@param nColors " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="329" tag="operation_329" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Convert a byte array of srcLen pixels *src to the specified color space&amp;#010;and put the converted bytes into the prepared byte array *dst.&amp;#010;&amp;#010;Returns false if the conversion failed, true if it succeeded" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="337" tag="operation_337" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="348" tag="operation_348" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="349" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="349" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISALPHACOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="349" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="349" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="349" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="349" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="349" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="349" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader350" tqparent_class="350" fileExt=".h" fileName="kisf32basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISF32BASECOLORSPACE_H&amp;#010;#define KISF32BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisabstractcolorspace.h&quot;&amp;#010;#include &quot;dword.h&quot;&amp;#010;#include &quot;iccolorspacesignature.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="350" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisF32BaseColorSpace&amp;#010; Copyright (c) 2004 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This class is the base for all 32-bit float colorspaces." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisF32BaseColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="354" tag="operation_354" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISF32BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader358" tqparent_class="358" fileExt=".h" fileName="kisu16basecolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISU16BASECOLORSPACE_H&amp;#010;#define KISU16BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisabstractcolorspace.h&quot;&amp;#010;#include &quot;dword.h&quot;&amp;#010;#include &quot;iccolorspacesignature.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="358" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisU16BaseColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;This is the base class for 16-bit/channel colorspaces. It defines&amp;#010;a number of common methods, like handling 16-bit alpha and up-&amp;#010;and down-scaling of channels." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="363" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="364" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisU16BaseColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="365" tag="operation_365" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param cmType &amp;#010;@param colorSpaceSignature " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISU16BASECOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="363" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="363" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="363" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="363" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="363" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="363" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="364" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="364" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="364" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="364" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="364" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="364" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader369" tqparent_class="369" fileExt=".h" fileName="kisxyzcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISXYZCOLORSPACE_H&amp;#010;#define KISXYZCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu16basecolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;#include &quot;q_uint16.h&quot;&amp;#010;#include &quot;cmshtransform.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="369" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisXyzColorSpace&amp;#010; Copyright (c) 2005 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisXyzColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="378" tag="operation_378" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="379" tag="operation_379" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="380" tag="operation_380" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="384" tag="operation_384" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="389" tag="operation_389" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="392" tag="operation_392" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="396" tag="operation_396" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="400" tag="operation_400" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="405" tag="operation_405" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="408" tag="operation_408" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="411" tag="operation_411" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="414" tag="operation_414" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="419" tag="operation_419" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="420" tag="operation_420" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="421" tag="operation_421" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="422" tag="operation_422" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="423" tag="operation_423" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="424" tag="operation_424" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="427" tag="operation_427" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="430" tag="operation_430" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="438" tag="operation_438" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="444" tag="operation_444" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="455" tag="operation_455" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="456" tag="operation_456" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="466" tag="operation_466" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="476" tag="operation_476" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="486" tag="operation_486" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="506" tag="operation_506" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="516" tag="operation_516" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="526" tag="operation_526" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="536" tag="operation_536" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="546" tag="operation_546" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="556" tag="operation_556" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="570" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="571" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="572" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="573" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="566" tag="tblock_4" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="567" tag="tblock_5" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="574" tag="tblock_7" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="566" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISXYZCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="566" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="566" tag="tblock_4" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="566" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="566" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="566" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="566" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="567" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="567" tag="tblock_5" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="567" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="567" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="567" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="567" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="568" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="568" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="568" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="570" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="570" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="570" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="570" text="return PIXEL_X;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="570" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="570" text="PIXEL_X = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="571" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="571" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="571" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="571" text="return PIXEL_Y;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="571" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="571" text="PIXEL_Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="572" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="572" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="572" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="572" text="return PIXEL_Z;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="572" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="572" text="PIXEL_Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="573" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="573" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="573" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="573" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="573" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="573" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="574" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="574" tag="tblock_7" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// A small buffer for conversion from and to qcolor." />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="574" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="574" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@return the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="574" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="574" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of m_qcolordata&amp;#010;// A small buffer for conversion from and to qcolor.&amp;#010;@param value the value of m_qcolordata" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kisrgbu16colorspace" id="cppheader373" tqparent_class="373" fileExt=".h" fileName="pixel" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef PIXEL_H&amp;#010;#define PIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;q_uint16.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="373" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Pixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="374" tag="tblock_0" canDelete="false" indentLevel="1" text=" Q_UINT16 X;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="375" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT16 Y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="376" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT16 Z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="377" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT16 alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1130" tag="tblock_4" canDelete="false" indentLevel="1" text=" float blue;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1131" tag="tblock_5" canDelete="false" indentLevel="1" text=" float green;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1132" tag="tblock_6" canDelete="false" indentLevel="1" text=" float red;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Pixel ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="374" text="return X;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="374" text="X = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="375" text="return Y;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="375" text="Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="376" text="return Z;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="376" text="Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="377" text="return alpha;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="377" text="alpha = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1130" text="return blue;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1130" text="blue = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1131" text="return green;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1131" text="green = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1132" text="return red;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1132" text="red = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //PIXEL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="374" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="374" tag="tblock_0" canDelete="false" indentLevel="1" text=" Q_UINT16 X;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="374" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="374" text="return X;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="374" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="374" text="X = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="375" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="375" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT16 Y;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="375" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="375" text="return Y;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="375" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="375" text="Y = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="376" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="376" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT16 Z;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="376" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="376" text="return Z;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="376" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="376" text="Z = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="377" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="377" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT16 alpha;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="377" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="377" text="return alpha;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="377" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="377" text="alpha = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1130" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1130" tag="tblock_4" canDelete="false" indentLevel="1" text=" float blue;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1130" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1130" text="return blue;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1130" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1130" text="blue = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1131" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1131" tag="tblock_5" canDelete="false" indentLevel="1" text=" float green;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1131" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1131" text="return green;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1131" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1131" text="green = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1132" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1132" tag="tblock_6" canDelete="false" indentLevel="1" text=" float red;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1132" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1132" text="return red;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1132" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1132" text="red = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader575" tqparent_class="575" fileExt=".h" fileName="kiscmykcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCMYKCOLORSPACE_H&amp;#010;#define KISCMYKCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu8basecolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;#include &quot;cmshtransform.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="575" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisCmykColorSpace&amp;#010; Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisCmykColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="579" tag="operation_579" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="581" tag="operation_581" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="585" tag="operation_585" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="590" tag="operation_590" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="593" tag="operation_593" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="597" tag="operation_597" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param color &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="601" tag="operation_601" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param color &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="606" tag="operation_606" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="612" tag="operation_612" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="617" tag="operation_617" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="618" tag="operation_618" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="620" tag="operation_620" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="622" tag="operation_622" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="625" tag="operation_625" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="628" tag="operation_628" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="636" tag="operation_636" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="639" tag="operation_639" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="651" tag="operation_651" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="652" tag="operation_652" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dstRowStart &amp;#010;@param dstRowStride &amp;#010;@param srcRowStart &amp;#010;@param srcRowStride &amp;#010;@param rows &amp;#010;@param numColumns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="664" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="665" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="666" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="667" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="668" tag="tblock_4" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="660" tag="tblock_5" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="661" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="662" tag="tblock_7" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="663" tag="tblock_8" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="660" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCMYKCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="660" tag="tblock_5" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="660" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="660" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="660" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="660" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="661" tag="tblock_6" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="661" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="661" text="return m_defaultToRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="661" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="661" text="m_defaultToRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="662" tag="tblock_7" canDelete="false" indentLevel="1" text=" cmsHTRANSFORM m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="662" text="return m_defaultFromRGB;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="662" tag="hblock_tag_23" canDelete="false" indentLevel="1" classfield_id="662" text="m_defaultFromRGB = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="663" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="663" tag="tblock_8" canDelete="false" indentLevel="1" text=" Q_UINT8* m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="663" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="663" text="return m_qcolordata;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="663" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="663" text="m_qcolordata = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="664" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="664" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="664" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="664" text="return PIXEL_CYAN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="664" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="664" text="PIXEL_CYAN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="665" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="665" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="665" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="665" text="return PIXEL_MAGENTA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="665" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="665" text="PIXEL_MAGENTA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="666" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="666" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="666" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="666" text="return PIXEL_YELLOW;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="666" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="666" text="PIXEL_YELLOW = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="667" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="667" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="667" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="667" text="return PIXEL_BLACK;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="667" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="667" text="PIXEL_BLACK = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="668" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="668" tag="tblock_4" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="668" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="668" text="return PIXEL_CMYK_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="668" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="668" text="PIXEL_CMYK_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader669" tqparent_class="669" fileExt=".h" fileName="kisgraycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISGRAYCOLORSPACE_H&amp;#010;#define KISGRAYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu8basecolorspace.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="669" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisGrayColorSpace&amp;#010; Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisGrayColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="673" tag="operation_673" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="674" tag="operation_674" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="675" tag="operation_675" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param gray &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="679" tag="operation_679" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param gray &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="683" tag="operation_683" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="687" tag="operation_687" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="692" tag="operation_692" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="703" tag="operation_703" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="711" tag="operation_711" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="714" tag="operation_714" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="717" tag="operation_717" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="722" tag="operation_722" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="723" tag="operation_723" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="724" tag="operation_724" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="725" tag="operation_725" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="726" tag="operation_726" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="727" tag="operation_727" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="730" tag="operation_730" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="733" tag="operation_733" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="741" tag="operation_741" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="747" tag="operation_747" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dststride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="758" tag="operation_758" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="759" tag="operation_759" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="769" tag="operation_769" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="789" tag="operation_789" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="799" tag="operation_799" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="809" tag="operation_809" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="819" tag="operation_819" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="839" tag="operation_839" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="849" tag="operation_849" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="861" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="862" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_2" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="860" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISGRAYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="860" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="860" tag="tblock_2" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="860" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="860" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="860" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="860" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="861" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="861" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="861" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="861" text="return PIXEL_GRAY;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="861" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="861" text="PIXEL_GRAY = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="862" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="862" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="862" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="862" text="return PIXEL_GRAY_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="862" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="862" text="PIXEL_GRAY_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader859" tqparent_class="859" fileExt=".h" fileName="kisgraycolorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISGRAYCOLORSPACETESTER_H&amp;#010;#define KISGRAYCOLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="859" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisGrayColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisGrayColorSpaceTester ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISGRAYCOLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader863" tqparent_class="863" fileExt=".h" fileName="rgbf32plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef RGBF32PLUGIN_H&amp;#010;#define RGBF32PLUGIN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" text="using ::RGBF32Plugin;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="863" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class RGBF32Plugin&amp;#010; Copyright (c) 2003 Boudewijn Rempt (boud@valdyas.org)&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;A plugin wrapper around the RGB F32 colour space strategy." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="RGBF32Plugin ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="869" tag="operation_869" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param name &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="877" tag="operation_877" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="878" tag="tblock_0" canDelete="false" indentLevel="1" text=" KisAbstractColorSpace* m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //RGBF32PLUGIN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="878" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="878" tag="tblock_0" canDelete="false" indentLevel="1" text=" KisAbstractColorSpace* m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="878" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="878" text="return m_ColorSpaceRGBF32;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="878" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="878" text="m_ColorSpaceRGBF32 = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader864" tqparent_class="864" fileExt=".h" fileName="kparts" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KPARTS_H&amp;#010;#define KPARTS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="864" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KParts&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KParts ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KPARTS_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="kparts" id="cppheader865" tqparent_class="865" fileExt=".h" fileName="plugin" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef PLUGIN_H&amp;#010;#define PLUGIN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="865" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class Plugin&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="Plugin ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //PLUGIN_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader870" tqparent_class="870" fileExt=".h" fileName="qobject" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QOBJECT_H&amp;#010;#define QOBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="870" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QObject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QObject ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QOBJECT_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader879" tqparent_class="879" fileExt=".h" fileName="kisf32rgbcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISF32RGBCOLORSPACE_H&amp;#010;#define KISF32RGBCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisf32basecolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="879" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisF32RgbColorSpace&amp;#010; Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>&amp;#010; Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisF32RgbColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="884" tag="operation_884" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="885" tag="operation_885" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="891" tag="operation_891" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="898" tag="operation_898" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="902" tag="operation_902" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="907" tag="operation_907" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="910" tag="operation_910" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="914" tag="operation_914" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="918" tag="operation_918" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="923" tag="operation_923" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="932" tag="operation_932" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="939" tag="operation_939" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="940" tag="operation_940" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="941" tag="operation_941" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="942" tag="operation_942" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="956" tag="operation_956" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="957" tag="operation_957" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="963" tag="operation_963" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="974" tag="operation_974" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="994" tag="operation_994" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1014" tag="operation_1014" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1024" tag="operation_1024" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1034" tag="operation_1034" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1044" tag="operation_1044" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1074" tag="operation_1074" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1104" tag="operation_1104" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1114" tag="operation_1114" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1126" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1127" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1128" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1129" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1125" tag="tblock_4" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISF32RGBCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1125" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1125" tag="tblock_4" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1125" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1125" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1125" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1125" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1126" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1126" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1126" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1126" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1126" tag="hblock_tag_5" canDelete="false" indentLevel="1" classfield_id="1126" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1127" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1127" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1127" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1127" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1127" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1127" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1128" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1128" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1128" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1128" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1128" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1128" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1129" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1129" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1129" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1129" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1129" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1129" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1124" tqparent_class="1124" fileExt=".h" fileName="kisf32rgbcolorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISF32RGBCOLORSPACETESTER_H&amp;#010;#define KISF32RGBCOLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1124" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisF32RgbColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisF32RgbColorSpaceTester ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISF32RGBCOLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1133" tqparent_class="1133" fileExt=".h" fileName="kisf32rgbcolorspacesp" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISF32RGBCOLORSPACESP_H&amp;#010;#define KISF32RGBCOLORSPACESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1133" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisF32RgbColorSpaceSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisF32RgbColorSpaceSP ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISF32RGBCOLORSPACESP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1134" tqparent_class="1134" fileExt=".h" fileName="kisrgbu16colorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRGBU16COLORSPACE_H&amp;#010;#define KISRGBU16COLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu16basecolorspace.h&quot;&amp;#010;#include &quot;q_uint16.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1134" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisRgbU16ColorSpace&amp;#010; Copyright (c) 2002 Patrick Julien &lt;freak@codepimps.org>&amp;#010; Copyright (c) 2005 Adrian Page &lt;adrian@pagenet.plus.com>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisRgbU16ColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1140" tag="operation_1140" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1141" tag="operation_1141" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1142" tag="operation_1142" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1148" tag="operation_1148" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1154" tag="operation_1154" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1158" tag="operation_1158" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1163" tag="operation_1163" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1166" tag="operation_1166" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1170" tag="operation_1170" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1174" tag="operation_1174" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1179" tag="operation_1179" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1185" tag="operation_1185" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1188" tag="operation_1188" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1193" tag="operation_1193" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1195" tag="operation_1195" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1197" tag="operation_1197" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1198" tag="operation_1198" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1201" tag="operation_1201" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1204" tag="operation_1204" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1212" tag="operation_1212" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1213" tag="operation_1213" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1219" tag="operation_1219" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1230" tag="operation_1230" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1240" tag="operation_1240" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1250" tag="operation_1250" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1260" tag="operation_1260" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1270" tag="operation_1270" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1280" tag="operation_1280" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1290" tag="operation_1290" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1300" tag="operation_1300" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1310" tag="operation_1310" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1320" tag="operation_1320" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1330" tag="operation_1330" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1340" tag="operation_1340" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1350" tag="operation_1350" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1360" tag="operation_1360" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1370" tag="operation_1370" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1382" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1383" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1384" tag="tblock_4" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1385" tag="tblock_5" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1381" tag="tblock_6" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRGBU16COLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_0" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1138" text="return U16_OPACITY_OPAQUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1138" text="U16_OPACITY_OPAQUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1139" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_1" canDelete="false" indentLevel="1" text="static const Q_UINT16 U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1139" text="return U16_OPACITY_TRANSPARENT;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1139" text="U16_OPACITY_TRANSPARENT = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1381" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1381" tag="tblock_6" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1381" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1381" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1381" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1381" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1382" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1382" tag="tblock_2" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1382" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1382" text="return PIXEL_BLUE;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1382" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1382" text="PIXEL_BLUE = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1383" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1383" tag="tblock_3" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1383" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1383" text="return PIXEL_GREEN;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1383" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1383" text="PIXEL_GREEN = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1384" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1384" tag="tblock_4" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1384" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1384" text="return PIXEL_RED;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1384" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1384" text="PIXEL_RED = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1385" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1385" tag="tblock_5" canDelete="false" indentLevel="1" text="static const Q_UINT8 PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1385" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1385" text="return PIXEL_ALPHA;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1385" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1385" text="PIXEL_ALPHA = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1380" tqparent_class="1380" fileExt=".h" fileName="kisrgbu16colorspacetester" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRGBU16COLORSPACETESTER_H&amp;#010;#define KISRGBU16COLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1380" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisRgbU16ColorSpaceTester&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisRgbU16ColorSpaceTester ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRGBU16COLORSPACETESTER_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1386" tqparent_class="1386" fileExt=".h" fileName="kisrgbcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISRGBCOLORSPACE_H&amp;#010;#define KISRGBCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisu8basecolorspace.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;enumchannelflags.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1386" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisRgbColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisRgbColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1390" tag="operation_1390" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1391" tag="operation_1391" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1392" tag="operation_1392" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1398" tag="operation_1398" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param red &amp;#010;@param green &amp;#010;@param blue &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1404" tag="operation_1404" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1408" tag="operation_1408" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1413" tag="operation_1413" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1416" tag="operation_1416" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1420" tag="operation_1420" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1424" tag="operation_1424" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1429" tag="operation_1429" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1432" tag="operation_1432" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1435" tag="operation_1435" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param src2 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1438" tag="operation_1438" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1443" tag="operation_1443" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param kernelValues &amp;#010;@param channelFlags &amp;#010;@param dst &amp;#010;@param factor &amp;#010;@param offset &amp;#010;@param nColors " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1452" tag="operation_1452" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1453" tag="operation_1453" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1454" tag="operation_1454" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1455" tag="operation_1455" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1456" tag="operation_1456" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1459" tag="operation_1459" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1462" tag="operation_1462" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1470" tag="operation_1470" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1471" tag="operation_1471" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param transferValues " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1473" tag="operation_1473" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1478" tag="operation_1478" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Darken all color channels with the given amount. If compensate is true,&amp;#010;the compensation factor will be used to limit the darkening.&amp;#010;&amp;#010;(See the bumpmap filter)" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1485" tag="operation_1485" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1487" tag="operation_1487" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1498" tag="operation_1498" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1508" tag="operation_1508" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1528" tag="operation_1528" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1538" tag="operation_1538" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1558" tag="operation_1558" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1568" tag="operation_1568" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1578" tag="operation_1578" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1598" tag="operation_1598" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1608" tag="operation_1608" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1618" tag="operation_1618" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1628" tag="operation_1628" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1638" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISRGBCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1638" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1638" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1638" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1638" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1638" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1638" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1639" tqparent_class="1639" fileExt=".h" fileName="wetpix" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef WETPIX_H&amp;#010;#define WETPIX_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1639" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class WetPix&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="WetPix ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //WETPIX_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1640" tqparent_class="1640" fileExt=".h" fileName="wetpixdbl" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef WETPIXDBL_H&amp;#010;#define WETPIXDBL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1640" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class WetPixDbl&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="WetPixDbl ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //WETPIXDBL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1641" tqparent_class="1641" fileExt=".h" fileName="wetpack" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef WETPACK_H&amp;#010;#define WETPACK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1641" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class WetPack&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="WetPack ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //WETPACK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1642" tqparent_class="1642" fileExt=".h" fileName="_wetpix" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef _WETPIX_H&amp;#010;#define _WETPIX_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;q_uint16.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1642" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class _WetPix&amp;#010;White is made up of myth-red, myth-green, and myth-blue. Myth-red&amp;#010;looks red when viewed reflectively, but cyan when viewed&amp;#010;transmissively (thus, it vaguely resembles a dichroic&amp;#010;filter). Myth-red over black is red, and myth-red over white is&amp;#010;white.&amp;#010;&amp;#010;Total red channel concentration is myth-red concentration plus&amp;#010;cyan concentration." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1643" tag="tblock_0" canDelete="false" indentLevel="1" text=" Q_UINT16 rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1644" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT16 rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1645" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT16 gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1646" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT16 gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_UINT16 bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_5" canDelete="false" indentLevel="1" text=" Q_UINT16 bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="tblock_6" canDelete="false" indentLevel="1" text=" Q_UINT16 w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1650" tag="tblock_7" canDelete="false" indentLevel="1" text=" Q_UINT16 h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="_WetPix ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1643" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1643" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1644" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1644" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1645" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1645" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1646" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1646" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1647" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1647" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1648" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1648" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1649" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1649" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1650" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1650" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //_WETPIX_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1643" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1643" tag="tblock_0" canDelete="false" indentLevel="1" text=" Q_UINT16 rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1643" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1643" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1643" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1643" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1644" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1644" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT16 rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1644" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1644" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1644" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1644" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1645" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1645" tag="tblock_2" canDelete="false" indentLevel="1" text=" Q_UINT16 gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1645" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1645" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1645" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1645" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1646" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1646" tag="tblock_3" canDelete="false" indentLevel="1" text=" Q_UINT16 gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1646" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1646" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1646" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1646" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1647" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_4" canDelete="false" indentLevel="1" text=" Q_UINT16 bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1647" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1647" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1648" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_5" canDelete="false" indentLevel="1" text=" Q_UINT16 bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1648" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1648" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1649" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="tblock_6" canDelete="false" indentLevel="1" text=" Q_UINT16 w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1649" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1649" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1650" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1650" tag="tblock_7" canDelete="false" indentLevel="1" text=" Q_UINT16 h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1650" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1650" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1650" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1650" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of h&amp;#010;Height of paper surface XXX: This might just as well be a single&amp;#010;channel in our colour model that has two of&amp;#010;these wetpix structs for every paint device pixel&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1651" tqparent_class="1651" fileExt=".h" fileName="_wetpack" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef _WETPACK_H&amp;#010;#define _WETPACK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;wetpix.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1651" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class _WetPack&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1652" tag="tblock_0" canDelete="false" indentLevel="1" text=" WetPix paint;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1653" tag="tblock_1" canDelete="false" indentLevel="1" text=" WetPix adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="_WetPack ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1652" text="return paint;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of paint&amp;#010;Paint layer&amp;#010;@return the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1652" text="paint = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of paint&amp;#010;Paint layer&amp;#010;@param value the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@return the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@param value the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //_WETPACK_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1652" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Paint layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1652" tag="tblock_0" canDelete="false" indentLevel="1" text=" WetPix paint;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Paint layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1652" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1652" text="return paint;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of paint&amp;#010;Paint layer&amp;#010;@return the value of paint" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1652" tag="hblock_tag_2" canDelete="false" indentLevel="1" classfield_id="1652" text="paint = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of paint&amp;#010;Paint layer&amp;#010;@param value the value of paint" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1653" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Adsorbtion layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1653" tag="tblock_1" canDelete="false" indentLevel="1" text=" WetPix adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Adsorbtion layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1653" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1653" text="return adsorb;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@return the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1653" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1653" text="adsorb = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of adsorb&amp;#010;Adsorbtion layer&amp;#010;@param value the value of adsorb" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1654" tqparent_class="1654" fileExt=".h" fileName="_wetpixdbl" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef _WETPIXDBL_H&amp;#010;#define _WETPIXDBL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1654" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class _WetPixDbl&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1655" tag="tblock_0" canDelete="false" indentLevel="1" text=" double rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1656" tag="tblock_1" canDelete="false" indentLevel="1" text=" double rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1657" tag="tblock_2" canDelete="false" indentLevel="1" text=" double gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1658" tag="tblock_3" canDelete="false" indentLevel="1" text=" double gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1659" tag="tblock_4" canDelete="false" indentLevel="1" text=" double bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1660" tag="tblock_5" canDelete="false" indentLevel="1" text=" double bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1661" tag="tblock_6" canDelete="false" indentLevel="1" text=" double w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1662" tag="tblock_7" canDelete="false" indentLevel="1" text=" double h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="_WetPixDbl ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1655" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1655" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1656" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1656" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1657" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1657" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1658" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1658" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1659" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1659" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1660" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1660" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1661" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1661" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1662" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of h&amp;#010;Height of paper surface&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1662" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of h&amp;#010;Height of paper surface&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //_WETPIXDBL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1655" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total red channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1655" tag="tblock_0" canDelete="false" indentLevel="1" text=" double rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total red channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1655" text="return rd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rd&amp;#010;Total red channel concentration&amp;#010;@return the value of rd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1655" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1655" text="rd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rd&amp;#010;Total red channel concentration&amp;#010;@param value the value of rd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1656" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-red concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1656" tag="tblock_1" canDelete="false" indentLevel="1" text=" double rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-red concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1656" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1656" text="return rw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of rw&amp;#010;Myth-red concentration&amp;#010;@return the value of rw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1656" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1656" text="rw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of rw&amp;#010;Myth-red concentration&amp;#010;@param value the value of rw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1657" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total green channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1657" tag="tblock_2" canDelete="false" indentLevel="1" text=" double gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total green channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1657" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1657" text="return gd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gd&amp;#010;Total green channel concentration&amp;#010;@return the value of gd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1657" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1657" text="gd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gd&amp;#010;Total green channel concentration&amp;#010;@param value the value of gd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1658" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-green concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1658" tag="tblock_3" canDelete="false" indentLevel="1" text=" double gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-green concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1658" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1658" text="return gw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of gw&amp;#010;Myth-green concentration&amp;#010;@return the value of gw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1658" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1658" text="gw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of gw&amp;#010;Myth-green concentration&amp;#010;@param value the value of gw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1659" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Total blue channel concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1659" tag="tblock_4" canDelete="false" indentLevel="1" text=" double bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Total blue channel concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1659" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1659" text="return bd;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bd&amp;#010;Total blue channel concentration&amp;#010;@return the value of bd" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1659" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1659" text="bd = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bd&amp;#010;Total blue channel concentration&amp;#010;@param value the value of bd" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1660" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Myth-blue concentration" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1660" tag="tblock_5" canDelete="false" indentLevel="1" text=" double bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Myth-blue concentration" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1660" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1660" text="return bw;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of bw&amp;#010;Myth-blue concentration&amp;#010;@return the value of bw" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1660" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1660" text="bw = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of bw&amp;#010;Myth-blue concentration&amp;#010;@param value the value of bw" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1661" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Water volume" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1661" tag="tblock_6" canDelete="false" indentLevel="1" text=" double w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Water volume" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1661" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1661" text="return w;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of w&amp;#010;Water volume&amp;#010;@return the value of w" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1661" tag="hblock_tag_20" canDelete="false" indentLevel="1" classfield_id="1661" text="w = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of w&amp;#010;Water volume&amp;#010;@param value the value of w" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1662" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" text="Height of paper surface" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1662" tag="tblock_7" canDelete="false" indentLevel="1" text=" double h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Height of paper surface" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1662" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1662" text="return h;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Get the value of h&amp;#010;Height of paper surface&amp;#010;@return the value of h" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1662" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1662" text="h = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Set the value of h&amp;#010;Height of paper surface&amp;#010;@param value the value of h" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1663" tqparent_class="1663" fileExt=".h" fileName="kiswetcolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISWETCOLORSPACE_H&amp;#010;#define KISWETCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisabstractcolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;#include &quot;qstringlist.h&quot;&amp;#010;#include &quot;qmap.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1663" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisWetColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisWetColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1667" tag="operation_1667" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1668" tag="operation_1668" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1669" tag="operation_1669" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// Semi-clever: we have only fifteen wet paint colors that are mapped to the// qcolors that are put in the painter by the special wet paint palette. Other// QColors are mapped to plain water..." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1673" tag="operation_1673" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1678" tag="operation_1678" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1681" tag="operation_1681" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1685" tag="operation_1685" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1690" tag="operation_1690" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1693" tag="operation_1693" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1696" tag="operation_1696" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1701" tag="operation_1701" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1702" tag="operation_1702" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1703" tag="operation_1703" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1704" tag="operation_1704" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1705" tag="operation_1705" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1706" tag="operation_1706" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1707" tag="operation_1707" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1710" tag="operation_1710" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1713" tag="operation_1713" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1721" tag="operation_1721" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1724" tag="operation_1724" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@param &amp;#010;@param &amp;#010;@param " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1730" tag="operation_1730" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1731" tag="operation_1731" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param b " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1733" tag="operation_1733" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1735" tag="operation_1735" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT32* wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1758" tag="tblock_2" canDelete="false" indentLevel="1" text=" QStringList m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_3" canDelete="false" indentLevel="1" text=" QMap m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_4" canDelete="false" indentLevel="1" text=" bool m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_5" canDelete="false" indentLevel="1" text=" int phase;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_6" canDelete="false" indentLevel="1" text=" int phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1762" text="return phase;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1762" text="phase = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1746" tag="operation_1746" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// This was static, but since we have only one instance of the color strategy,// it can be just as well a private member variable." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1747" tag="operation_1747" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="// Convert a single pixel from its wet representation to rgb" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1751" tag="operation_1751" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rgb &amp;#010;@param pack " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISWETCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1755" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1755" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1757" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_1" canDelete="false" indentLevel="1" text=" Q_UINT32* wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_8" canDelete="false" indentLevel="1" classfield_id="1757" text="return wet_render_tab;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1757" text="wet_render_tab = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1758" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1758" tag="tblock_2" canDelete="false" indentLevel="1" text=" QStringList m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1758" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1758" text="return m_paintNames;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1758" tag="hblock_tag_11" canDelete="false" indentLevel="1" classfield_id="1758" text="m_paintNames = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1760" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_3" canDelete="false" indentLevel="1" text=" QMap m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_conversionMap;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1760" text="m_conversionMap = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1761" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_4" canDelete="false" indentLevel="1" text=" bool m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_14" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_paintwetness;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1761" text="m_paintwetness = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1762" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_5" canDelete="false" indentLevel="1" text=" int phase;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1762" text="return phase;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_17" canDelete="false" indentLevel="1" classfield_id="1762" text="phase = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1763" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_6" canDelete="false" indentLevel="1" text=" int phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1763" text="return phasebig;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1763" text="phasebig = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1759" tqparent_class="1759" fileExt=".h" fileName="qmap" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef QMAP_H&amp;#010;#define QMAP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1759" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class QMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="QMap ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //QMAP_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="cppheader1771" tqparent_class="1771" fileExt=".h" fileName="cell" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef CELL_H&amp;#010;#define CELL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1771" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class CELL&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="CELL ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //CELL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="cppheader1772" tqparent_class="1772" fileExt=".h" fileName="cell" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef CELL_H&amp;#010;#define CELL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1772" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class cell&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="cell ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //CELL_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="wetandsticky" id="cppheader1765" tqparent_class="1765" fileExt=".h" fileName="enumdirection" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef ENUMDIRECTION_H&amp;#010;#define ENUMDIRECTION_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1765" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class enumDirection&amp;#010;A color is specified as a vector in HLS space. Hue is a value&amp;#010;in the range 0..360 degrees with 0 degrees being red. Saturation&amp;#010;and Lightness are both in the range [0,1]. A lightness of 0 means&amp;#010;black, with 1 being white. A totally saturated color has saturation&amp;#010;of 1." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="enumDirection ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //ENUMDIRECTION_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader1774" tqparent_class="1774" fileExt=".h" fileName="kiswetstickycolorspace" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISWETSTICKYCOLORSPACE_H&amp;#010;#define KISWETSTICKYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;#include &quot;kisabstractcolorspace.h&quot;&amp;#010;#include &quot;kisprofilesp.h&quot;&amp;#010;#include &quot;quantum.h&quot;&amp;#010;#include &quot;kispixelro.h&quot;&amp;#010;#include &quot;kispixel.h&quot;&amp;#010;#include &quot;vkischannelinfosp.h&quot;&amp;#010;#include &quot;bool.h&quot;&amp;#010;#include &quot;q_int32.h&quot;&amp;#010;#include &quot;qstring.h&quot;&amp;#010;#include &quot;q_uint32.h&quot;&amp;#010;#include &quot;qimage.h&quot;&amp;#010;#include &quot;q_int8.h&quot;&amp;#010;#include &quot;q_uint8.h&quot;&amp;#010;#include &quot;kiscompositeoplist.h&quot;&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="enums" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <cppheaderclassdeclarationblock tqparent_id="1774" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Class KisWetStickyColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" indentLevel="1" text="KisWetStickyColorSpace ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1778" tag="operation_1778" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1779" tag="operation_1779" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1780" tag="operation_1780" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1784" tag="operation_1784" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param dst &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1789" tag="operation_1789" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param alpha " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1792" tag="operation_1792" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1796" tag="operation_1796" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param c &amp;#010;@param opacity &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1801" tag="operation_1801" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1804" tag="operation_1804" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param profile " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1807" tag="operation_1807" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1808" tag="operation_1808" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1809" tag="operation_1809" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1810" tag="operation_1810" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1811" tag="operation_1811" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1812" tag="operation_1812" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1813" tag="operation_1813" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixel &amp;#010;@param channelIndex " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param width &amp;#010;@param height &amp;#010;@param srcProfile &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@param exposure " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1827" tag="operation_1827" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src1 &amp;#010;@param adjust " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1830" tag="operation_1830" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param dst &amp;#010;@param brightness &amp;#010;@param contrast &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1836" tag="operation_1836" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colors &amp;#010;@param weights &amp;#010;@param nColors &amp;#010;@param dst " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1841" tag="operation_1841" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixels &amp;#010;@param alpha &amp;#010;@param nPixels " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1845" tag="operation_1845" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1846" tag="operation_1846" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowSize &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param srcAlphaMask &amp;#010;@param tqmaskRowStride &amp;#010;@param opacity &amp;#010;@param rows &amp;#010;@param cols &amp;#010;@param op " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1857" tag="operation_1857" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param src &amp;#010;@param srcProfile &amp;#010;@param dst &amp;#010;@param dstColorStrategy &amp;#010;@param dstProfile &amp;#010;@param numPixels &amp;#010;@param renderingIntent " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1895" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1865" tag="operation_1865" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1875" tag="operation_1875" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1885" tag="operation_1885" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dst &amp;#010;@param dstRowStride &amp;#010;@param src &amp;#010;@param srcRowStride &amp;#010;@param tqmask &amp;#010;@param tqmaskRowStride &amp;#010;@param rows &amp;#010;@param columns &amp;#010;@param opacity " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISWETSTICKYCOLORSPACE_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1895" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <cppcodedocumentation tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1895" tag="tblock_0" canDelete="false" indentLevel="1" text=" vKisChannelInfoSP m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1895" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1895" text="return m_channels;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1895" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1895" text="m_channels = value;" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="cppheader12050" tqparent_class="12050" fileExt=".h" fileName="kiscolorspacedescriptor" >
+ <textblocks>
+ <codeblockwithcomments tag="hashDefBlock" text="#ifndef KISCOLORSPACEDESCRIPTOR_H&amp;#010;#define KISCOLORSPACEDESCRIPTOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="includes" text="#include &lt;string>&amp;#010;" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="using" writeOutText="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <hierarchicalcodeblock tag="namespace" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" text="Namespace" />
+ </header>
+ <textblocks>
+ <cppheaderclassdeclarationblock tqparent_id="12050" tag="classDeclarationBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Interface KisColorSpaceDescriptor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Public stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="publicFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="KisColorSpaceDescriptor ( ) { }" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="pubStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="pubRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protectedBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Protected stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protectedFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="protStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="protRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privateBlock" canDelete="false" >
+ <header>
+ <cppcodedocumentation tag="" text="Private stuff" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privateFieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privMethodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructionMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="privStaticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="privRegularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <cppcodedocumentation tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </cppheaderclassdeclarationblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <codeblockwithcomments tag="hashDefBlockEnd" text="#endif //KISCOLORSPACEDESCRIPTOR_H" >
+ <header>
+ <cppcodedocumentation tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ </codegenerator>
+ </codegeneration>
+ </XMI.extensions>
+</XMI>
diff --git a/chalk/doc/colorstrategyAPI b/chalk/doc/colorstrategyAPI
new file mode 100644
index 000000000..07c95ae9e
--- /dev/null
+++ b/chalk/doc/colorstrategyAPI
@@ -0,0 +1,58 @@
+This is a working document. It list the places where pixels are mangled and requested functions to do it in an colorstrategy independent way
+
+The purpose is to find out which functions an API in colorstrategy must have to support pixelmangling in a colorstretegy independent manner.
+
+
+Requested function: apply an alpha tqmask to pixels
+Problem: alpha is hard-coded 8-bit in KisPixel, when it should be free
+
+void KisPaintDevice::clearSelection()
+{
+ if (!hasSelection()) return;
+
+ QRect r = m_selection -> selectedRect();
+ r = r.normalize();
+
+ for (Q_INT32 y = 0; y < r.height(); y++) {
+ KisHLineIterator devIt = createHLineIterator(r.x(), r.y() + y, r.width(), true);
+ KisHLineIterator selectionIt = m_selection -> createHLineIterator(r.x(), r.y() + y, r.width(), false);
+
+ while (!devIt.isDone()) {
+ KisPixel p = toPixel(devIt.rawData());
+ KisPixel s = m_selection -> toPixel(selectionIt.rawData());
+ // XXX: Why Q_UIN16 here? Doesn't that clash with UINT8_MULT later on?
+ Q_UINT16 p_alpha, s_alpha;
+ p_alpha = p.alpha();
+ s_alpha = MAX_SELECTED - s.alpha();
+
+ p.alpha() = UINT8_MULT(p_alpha, s_alpha);
+
+ ++devIt;
+ ++selectionIt;
+ }
+ }
+}
+
+void KisPaintDevice::applySelectionMask(KisSelectionSP tqmask)
+{
+ QRect r = tqmask -> extent();
+ crop(r);
+
+ for (Q_INT32 y = r.top(); y <= r.bottom(); ++y) {
+
+ KisHLineIterator pixelIt = createHLineIterator(r.x(), y, r.width(), true);
+ KisHLineIterator tqmaskIt = tqmask -> createHLineIterator(r.x(), y, r.width(), false);
+
+ while (!pixelIt.isDone()) {
+
+ KisPixel pixel = toPixel(pixelIt.rawData());
+ KisPixel tqmaskValue = tqmask -> toPixel(tqmaskIt.rawData());
+
+ pixel.alpha() = (pixel.alpha() * tqmaskValue.alpha()) / MAX_SELECTED;
+
+ ++pixelIt;
+ ++tqmaskIt;
+ }
+ }
+}
+
diff --git a/chalk/doc/controller.xmi b/chalk/doc/controller.xmi
new file mode 100644
index 000000000..3281c3443
--- /dev/null
+++ b/chalk/doc/controller.xmi
@@ -0,0 +1,39776 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" timestamp="2005-03-29T20:01:54" xmi.version="1.2" >
+ <XMI.header>
+ <XMI.documentation>
+ <XMI.exporter>umbrello uml modeller http://uml.sf.net</XMI.exporter>
+ <XMI.exporterVersion>1.4</XMI.exporterVersion>
+ <XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
+ </XMI.documentation>
+ <XMI.metamodel xmi.name="UML" href="UML.xml" xmi.version="1.3" />
+ </XMI.header>
+ <XMI.content>
+ <UML:Model isSpecification="false" isLeaf="false" isRoot="false" isAbstract="false" >
+ <UML:Namespace.ownedElement>
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="3" isRoot="false" isAbstract="false" name="datatype" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="12" isRoot="false" isAbstract="false" name="interface" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="302" isRoot="false" isAbstract="false" name="enum" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="362" isRoot="false" isAbstract="false" name="typedef" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="2" isRoot="false" isAbstract="false" name="int" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="4" isRoot="false" isAbstract="false" name="char" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="5" isRoot="false" isAbstract="false" name="boolean" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="6" isRoot="false" isAbstract="false" name="float" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="7" isRoot="false" isAbstract="false" name="double" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="8" isRoot="false" isAbstract="false" name="byte" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="9" isRoot="false" isAbstract="false" name="short" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="10" isRoot="false" isAbstract="false" name="string" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="21" isRoot="false" isAbstract="false" name="void" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="22" isRoot="false" isAbstract="false" name="QWidget * " />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="461" isRoot="false" isAbstract="false" name="QWidget*" elementReference="455" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="476" isRoot="false" isAbstract="false" name="const QRect&amp;" elementReference="475" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="494" isRoot="false" isAbstract="false" name="const KisRect&amp;" elementReference="456" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="498" isRoot="false" isAbstract="false" name="const QPoint&amp;" elementReference="497" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="501" isRoot="false" isAbstract="false" name="const KisPoint&amp;" elementReference="457" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="508" isRoot="false" isAbstract="false" name="Q_INT32*" elementReference="463" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="523" isRoot="false" isAbstract="false" name="const KisCanvasControllerInterface&amp;" elementReference="11" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="527" isRoot="false" isAbstract="false" name="KisCanvasControllerInterface&amp;" elementReference="11" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="533" isRoot="false" isAbstract="false" name="KisCanvasSubject*" elementReference="528" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="536" isRoot="false" isAbstract="false" name="const KisCanvasObserver&amp;" elementReference="529" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="540" isRoot="false" isAbstract="false" name="KisCanvasObserver&amp;" elementReference="529" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="549" isRoot="false" isAbstract="false" name="const QString&amp;" elementReference="548" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="555" isRoot="false" isAbstract="false" name="const KisID&amp;" elementReference="541" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="583" isRoot="false" isAbstract="false" name="KisCanvasObserver*" elementReference="529" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="593" isRoot="false" isAbstract="false" name="const QColor&amp;" elementReference="591" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="599" isRoot="false" isAbstract="false" name="KisBrush*" elementReference="572" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="601" isRoot="false" isAbstract="false" name="KisPattern*" elementReference="574" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="603" isRoot="false" isAbstract="false" name="KisGradient*" elementReference="573" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="606" isRoot="false" isAbstract="false" name="KisUndoAdapter*" elementReference="575" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="608" isRoot="false" isAbstract="false" name="KisCanvasControllerInterface*" elementReference="11" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="610" isRoot="false" isAbstract="false" name="KisToolControllerInterface*" elementReference="18" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="612" isRoot="false" isAbstract="false" name="KoDocument*" elementReference="571" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="614" isRoot="false" isAbstract="false" name="KisProgressDisplayInterface*" elementReference="576" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="616" isRoot="false" isAbstract="false" name="KisSelectionManager*" elementReference="577" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="618" isRoot="false" isAbstract="false" name="KisFilterRegistry*" elementReference="578" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="623" isRoot="false" isAbstract="false" name="const QCursor&amp;" elementReference="579" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="626" isRoot="false" isAbstract="false" name="const KisCanvasSubject&amp;" elementReference="528" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="630" isRoot="false" isAbstract="false" name="KisCanvasSubject&amp;" elementReference="528" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="651" isRoot="false" isAbstract="false" name="const KisGenericRegistry&amp;" elementReference="631" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="663" isRoot="false" isAbstract="false" name="const QByteArray&amp;" elementReference="662" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="666" isRoot="false" isAbstract="false" name="QString&amp;" elementReference="548" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="669" isRoot="false" isAbstract="false" name="QByteArray&amp;" elementReference="662" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="715" isRoot="false" isAbstract="false" name="QDomElement&amp;" elementReference="714" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="718" isRoot="false" isAbstract="false" name="const QDomElement&amp;" elementReference="714" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="729" isRoot="false" isAbstract="false" name="const QSize&amp;" elementReference="728" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="734" isRoot="false" isAbstract="false" name="QPaintDevice*" elementReference="733" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="752" isRoot="false" isAbstract="false" name="QPixmap*" elementReference="685" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="765" isRoot="false" isAbstract="false" name="const char*" elementReference="4" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="842" isRoot="false" isAbstract="false" name="CONTRIB*" elementReference="837" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="847" isRoot="false" isAbstract="false" name="KisPaintDevice*" elementReference="388" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="856" isRoot="false" isAbstract="false" name="CLIST*" elementReference="840" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="862" isRoot="false" isAbstract="false" name="KisScaleFilterStrategy*" elementReference="776" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="899" isRoot="false" isAbstract="false" name="KisResource*" elementReference="868" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="906" isRoot="false" isAbstract="false" name="const KisResource&amp;" elementReference="868" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="910" isRoot="false" isAbstract="false" name="KisResource&amp;" elementReference="868" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="931" isRoot="false" isAbstract="false" name="const cmsHPROFILE" elementReference="930" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="974" isRoot="false" isAbstract="false" name="const KisImage&amp;" elementReference="383" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="978" isRoot="false" isAbstract="false" name="DCOPObject*" elementReference="960" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="990" isRoot="false" isAbstract="false" name="QPainter&amp;" elementReference="989" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1025" isRoot="false" isAbstract="false" name="const KisProfileSP&amp;" elementReference="438" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1028" isRoot="false" isAbstract="false" name="KoCommandHistory*" elementReference="957" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1034" isRoot="false" isAbstract="false" name="const KURL&amp;" elementReference="1032" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1040" isRoot="false" isAbstract="false" name="const KoUnit::Unit&amp;" elementReference="1038" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1052" isRoot="false" isAbstract="false" name="const vKisLayerSP&amp;" elementReference="395" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1056" isRoot="false" isAbstract="false" name="const KisLayerSP" elementReference="394" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1062" isRoot="false" isAbstract="false" name="const KisLayerSP&amp;" elementReference="394" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1104" isRoot="false" isAbstract="false" name="KisGuideMgr*" elementReference="690" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1128" isRoot="false" isAbstract="false" name="KisImage&amp;" elementReference="383" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1153" isRoot="false" isAbstract="false" name="KisNameServer*" elementReference="958" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1167" isRoot="false" isAbstract="false" name="KisQuantumOperation*" elementReference="1160" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1188" isRoot="false" isAbstract="false" name="QUANTUM*" elementReference="1163" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1204" isRoot="false" isAbstract="false" name="const QUANTUM*" elementReference="1163" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1332" isRoot="false" isAbstract="false" name="KisFilterStrategy*" elementReference="1253" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1355" isRoot="false" isAbstract="false" name="const KisDataManager&amp;" elementReference="423" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1359" isRoot="false" isAbstract="false" name="KisMemento*" elementReference="1358" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1365" isRoot="false" isAbstract="false" name="KoStore*" elementReference="1347" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1371" isRoot="false" isAbstract="false" name="Q_INT32&amp;" elementReference="463" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1395" isRoot="false" isAbstract="false" name="Q_UINT8*" elementReference="1388" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1398" isRoot="false" isAbstract="false" name="KisDataManager*" elementReference="423" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1443" isRoot="false" isAbstract="false" name="KisImage*" elementReference="383" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1448" isRoot="false" isAbstract="false" name="const KisPaintDevice&amp;" elementReference="388" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1465" isRoot="false" isAbstract="false" name="KNamedCommand*" elementReference="1432" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1467" isRoot="false" isAbstract="false" name="const bool" elementReference="558" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1510" isRoot="false" isAbstract="false" name="const QImage&amp;" elementReference="879" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1526" isRoot="false" isAbstract="false" name="QColor*" elementReference="591" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1537" isRoot="false" isAbstract="false" name="const Q_UINT8*" elementReference="1388" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1557" isRoot="false" isAbstract="false" name="const KisImage*" elementReference="383" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1626" isRoot="false" isAbstract="false" name="KisPaintDevice&amp;" elementReference="388" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1639" isRoot="false" isAbstract="false" name="KisScaleVisitor&amp;" elementReference="832" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1642" isRoot="false" isAbstract="false" name="KisRotateVisitor&amp;" elementReference="1428" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1645" isRoot="false" isAbstract="false" name="KisTransformVisitor&amp;" elementReference="1318" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1668" isRoot="false" isAbstract="false" name="const QColor" elementReference="591" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1699" isRoot="false" isAbstract="false" name="KisView*" elementReference="1675" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1701" isRoot="false" isAbstract="false" name="KActionCollection*" elementReference="1679" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1709" isRoot="false" isAbstract="false" name="KisTool*" elementReference="418" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1717" isRoot="false" isAbstract="false" name="KisGenericRegistry&lt; QWidget * >*" elementReference="631" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1719" isRoot="false" isAbstract="false" name="KisGenericRegistry&lt; KisDockFrameDocker * >*" elementReference="631" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1721" isRoot="false" isAbstract="false" name="KisGenericRegistry&lt; KisPaintBox * >*" elementReference="631" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1723" isRoot="false" isAbstract="false" name="KisGenericRegistry&lt; KoTabbedToolDock * >*" elementReference="631" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1750" isRoot="false" isAbstract="false" name="KoToolDockManager*" elementReference="1678" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1752" isRoot="false" isAbstract="false" name="KoTabbedToolDock*" elementReference="1677" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1758" isRoot="false" isAbstract="false" name="KisDockFrameDocker*" elementReference="1676" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1764" isRoot="false" isAbstract="false" name="KisPaintBox*" elementReference="1680" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1766" isRoot="false" isAbstract="false" name="KisLayerBox*" elementReference="1681" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1769" isRoot="false" isAbstract="false" name="KisFilterBox*" elementReference="1682" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1771" isRoot="false" isAbstract="false" name="ControlFrame*" elementReference="1683" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1773" isRoot="false" isAbstract="false" name="KisBirdEyeBox*" elementReference="1684" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1775" isRoot="false" isAbstract="false" name="KisChannelView*" elementReference="1685" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1777" isRoot="false" isAbstract="false" name="KisAutobrush*" elementReference="1686" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1779" isRoot="false" isAbstract="false" name="KisTextBrush*" elementReference="1687" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1781" isRoot="false" isAbstract="false" name="KisAutogradient*" elementReference="1688" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1783" isRoot="false" isAbstract="false" name="KisHSVWidget*" elementReference="1689" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1785" isRoot="false" isAbstract="false" name="KisRGBWidget*" elementReference="1690" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1787" isRoot="false" isAbstract="false" name="KisGrayWidget*" elementReference="1691" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1789" isRoot="false" isAbstract="false" name="KisPaletteWidget*" elementReference="1692" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1791" isRoot="false" isAbstract="false" name="KisResourceMediator*" elementReference="1693" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1803" isRoot="false" isAbstract="false" name="KisDoc*" elementReference="1796" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1809" isRoot="false" isAbstract="false" name="KAction*" elementReference="1674" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1837" isRoot="false" isAbstract="false" name="KisClipboard*" elementReference="1797" />
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="11" isRoot="false" isAbstract="true" name="KisCanvasControllerInterface" >
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="458" isRoot="false" isAbstract="false" name="KisCanvasControllerInterface" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="459" isRoot="false" isAbstract="false" name="~ KisCanvasControllerInterface" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="460" isRoot="false" isAbstract="true" name="canvas" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5311" type="461" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="462" isRoot="false" isAbstract="true" name="horzValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5312" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="464" isRoot="false" isAbstract="true" name="vertValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5313" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="465" isRoot="false" isAbstract="true" name="scrollTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="466" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="467" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="468" isRoot="false" isAbstract="true" name="updateCanvas" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="469" isRoot="false" isAbstract="true" name="updateCanvas" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="470" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="471" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="472" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="473" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="474" isRoot="false" isAbstract="true" name="updateCanvas" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="477" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="478" isRoot="false" isAbstract="true" name="zoomIn" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="479" isRoot="false" isAbstract="true" name="zoomIn" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="480" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="481" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="482" isRoot="false" isAbstract="true" name="zoomOut" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="483" isRoot="false" isAbstract="true" name="zoomOut" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="484" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="485" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="486" isRoot="false" isAbstract="true" name="zoomTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="487" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="488" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="489" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="490" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="491" isRoot="false" isAbstract="true" name="zoomTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="492" isRoot="false" value="" type="476" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="493" isRoot="false" isAbstract="true" name="zoomTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="495" isRoot="false" value="" type="494" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="496" isRoot="false" isAbstract="true" name="viewToWindow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5314" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="499" isRoot="false" value="" type="498" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="500" isRoot="false" isAbstract="true" name="viewToWindow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5315" type="457" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="502" isRoot="false" value="" type="501" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="503" isRoot="false" isAbstract="true" name="viewToWindow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5316" type="475" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="504" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="505" isRoot="false" isAbstract="true" name="viewToWindow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5317" type="456" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="506" isRoot="false" value="" type="494" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="507" isRoot="false" isAbstract="true" name="viewToWindow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="509" isRoot="false" value="" type="508" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="510" isRoot="false" value="" type="508" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="511" isRoot="false" isAbstract="true" name="windowToView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5318" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="512" isRoot="false" value="" type="498" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="513" isRoot="false" isAbstract="true" name="windowToView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5319" type="457" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="514" isRoot="false" value="" type="501" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="515" isRoot="false" isAbstract="true" name="windowToView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5320" type="475" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="516" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="517" isRoot="false" isAbstract="true" name="windowToView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5321" type="456" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="518" isRoot="false" value="" type="494" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="519" isRoot="false" isAbstract="true" name="windowToView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="520" isRoot="false" value="" type="508" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="521" isRoot="false" value="" type="508" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="522" isRoot="false" isAbstract="false" name="KisCanvasControllerInterface" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="524" isRoot="false" value="" type="523" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="525" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5322" type="527" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="526" isRoot="false" value="" type="523" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Interface>
+ <UML:Interface stereotype="12" comment="Combines access to the various controllers that allow plugins to function within Chalk. Every controller offers a select subset of functionality centered around a particular activity.
+
+All this functionality is centered around a view with a certain document and an active image with an active layer.
+
+XXX: Should this be the basis for simple scriptability? Have every controller register every action using a KisID and a parameter description list, and offer a queryActions() and an executeAction(KisID) method?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="13" isRoot="false" isAbstract="true" name="KisMetaControllerInterface" >
+ <UML:Classifier.feature>
+ <UML:Operation comment="Retrieve the view widget that is controlled by this controller; it can be used to tqparent dialogs." isSpecification="false" isLeaf="false" visibility="public" xmi.id="20" isRoot="false" isAbstract="false" name="getView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5323" type="22" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the KActionCollection of the current view. This can be used to associate actions directly with the main view instead of relying on the KXMLGui based configuration mechanism." isSpecification="false" isLeaf="false" visibility="public" xmi.id="25" isRoot="false" isAbstract="false" name="getActionCollection" />
+ <UML:Operation comment="Get the canvas controller. The canvas controller enables zooming of the canvas and converting image coordinates to canvas and view coordinates." isSpecification="false" isLeaf="false" visibility="public" xmi.id="28" isRoot="false" isAbstract="false" name="getCanvasController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5324" type="11" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the selection controller. The selection controller can be used to create and modify selections for a paint device." isSpecification="false" isLeaf="false" visibility="public" xmi.id="43" isRoot="false" isAbstract="false" name="getSelectionController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5325" type="14" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the layer controller interface. The layer controller offers access to functions to add, delete transform or restack layers, " isSpecification="false" isLeaf="false" visibility="public" xmi.id="50" isRoot="false" isAbstract="false" name="getLayerController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5326" type="15" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Returns the image controller interface. The image controller offers functionality to create, delete, transform, convert, import or export images." isSpecification="false" isLeaf="false" visibility="public" xmi.id="55" isRoot="false" isAbstract="false" name="getImageController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5327" type="16" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The docker controller allows the creating, removing, showing and hiding of docker tabs and dockers." isSpecification="false" isLeaf="false" visibility="public" xmi.id="106" isRoot="false" isAbstract="false" name="getDockerController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5328" type="17" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The painter controller allows setting of properties like foreground and background colour and other properties that the various painters (line, fill, gradient, convolution) will use when created on a given paint device." isSpecification="false" isLeaf="false" visibility="public" xmi.id="125" isRoot="false" isAbstract="false" name="getPainterController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5329" type="19" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Returns the tool controller. The tool controller makes it possible to set a tool current and to retrieve the current tool. This is useful when tools are activated but also if a tool needs to be temporarily activated, like the move tool which should be activated if a selection tool is active and the user presses a modifier key while dragging." isSpecification="false" isLeaf="false" visibility="public" xmi.id="140" isRoot="false" isAbstract="false" name="getToolController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5330" type="18" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Interface>
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="14" isRoot="false" isAbstract="true" name="KisSelectionControllerInterface" />
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="15" isRoot="false" isAbstract="true" name="KisLayerControllerInterface" />
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="16" isRoot="false" isAbstract="true" name="KisImageControllerInterface" />
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="17" isRoot="false" isAbstract="true" name="KisDockerControllerInterface" />
+ <UML:Interface stereotype="12" isSpecification="false" isLeaf="false" visibility="public" xmi.id="18" isRoot="false" isAbstract="true" name="KisToolControllerInterface" />
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="301" isRoot="false" isAbstract="false" name="enumCursorStyle" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="303" isRoot="false" isAbstract="false" name="CURSOR_STYLE_TOOLICON" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="304" isRoot="false" isAbstract="false" name="CURSOR_STYLE_CROSSHAIR" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="305" isRoot="false" isAbstract="false" name="CURSOR_STYLE_POINTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="306" isRoot="false" isAbstract="false" name="CURSOR_STYLE_OUTLINE" />
+ </UML:Enumeration>
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="307" isRoot="false" isAbstract="false" name="enumDockerStyle" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="308" isRoot="false" isAbstract="false" name="DOCKER_SLIDER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="309" isRoot="false" isAbstract="false" name="DOCKER_DOCKER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="310" isRoot="false" isAbstract="false" name="DOCKER_TOOLBOX" />
+ </UML:Enumeration>
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="311" isRoot="false" isAbstract="false" name="enumRotationDirection" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="312" isRoot="false" isAbstract="false" name="CLOCKWISE" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="313" isRoot="false" isAbstract="false" name="COUNTERCLOCKWISE" />
+ </UML:Enumeration>
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="314" isRoot="false" isAbstract="false" name="CompositeOp" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="315" isRoot="false" isAbstract="false" name="COMPOSITE_OVER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="316" isRoot="false" isAbstract="false" name="COMPOSITE_IN" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="317" isRoot="false" isAbstract="false" name="COMPOSITE_OUT" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="318" isRoot="false" isAbstract="false" name="COMPOSITE_ATOP" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="319" isRoot="false" isAbstract="false" name="COMPOSITE_XOR" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="320" isRoot="false" isAbstract="false" name="COMPOSITE_PLUS" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="321" isRoot="false" isAbstract="false" name="COMPOSITE_MINUS" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="322" isRoot="false" isAbstract="false" name="COMPOSITE_ADD" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="323" isRoot="false" isAbstract="false" name="COMPOSITE_SUBTRACT" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="324" isRoot="false" isAbstract="false" name="COMPOSITE_DIFF" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="325" isRoot="false" isAbstract="false" name="COMPOSITE_MULT" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="326" isRoot="false" isAbstract="false" name="COMPOSITE_BUMPMAP" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="327" isRoot="false" isAbstract="false" name="COMPOSITE_COPY" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="328" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_RED" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="329" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_GREEN" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="330" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_BLUE" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="331" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_OPACITY" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="332" isRoot="false" isAbstract="false" name="COMPOSITE_CLEAR" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="333" isRoot="false" isAbstract="false" name="COMPOSITE_DISSOLVE" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="334" isRoot="false" isAbstract="false" name="COMPOSITE_DISPLACE" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="335" isRoot="false" isAbstract="false" name="COMPOSITE_NO" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="336" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_CYAN" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="337" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_MAGENTA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="338" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_YELLOW" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="339" isRoot="false" isAbstract="false" name="COMPOSITE_COPY_BLACK" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="340" isRoot="false" isAbstract="false" name="COMPOSITE_ERASE" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="341" isRoot="false" isAbstract="false" name="COMPOSITE_UNDEF" />
+ </UML:Enumeration>
+ <UML:Enumeration stereotype="302" comment="// The following enum is kept to allow the loading of old documents in KisDoc::loadImage// XXX: Before Koffice 1.4 release, remove. We do not need backwards compatibility since// we have no installed base." isSpecification="false" isLeaf="false" visibility="public" xmi.id="342" isRoot="false" isAbstract="false" name="enumImgTypeDeprecated" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="343" isRoot="false" isAbstract="false" name="IMAGE_TYPE_UNKNOWN" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="344" isRoot="false" isAbstract="false" name="IMAGE_TYPE_INDEXED" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="345" isRoot="false" isAbstract="false" name="IMAGE_TYPE_INDEXEDA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="346" isRoot="false" isAbstract="false" name="IMAGE_TYPE_GREY" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="347" isRoot="false" isAbstract="false" name="IMAGE_TYPE_GREYA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="348" isRoot="false" isAbstract="false" name="IMAGE_TYPE_RGB" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="349" isRoot="false" isAbstract="false" name="IMAGE_TYPE_RGBA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="350" isRoot="false" isAbstract="false" name="IMAGE_TYPE_CMYK" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="351" isRoot="false" isAbstract="false" name="IMAGE_TYPE_CMYKA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="352" isRoot="false" isAbstract="false" name="IMAGE_TYPE_LAB" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="353" isRoot="false" isAbstract="false" name="IMAGE_TYPE_LABA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="354" isRoot="false" isAbstract="false" name="IMAGE_TYPE_YUV" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="355" isRoot="false" isAbstract="false" name="IMAGE_TYPE_YUVA" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="356" isRoot="false" isAbstract="false" name="IMAGE_TYPE_WET" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="357" isRoot="false" isAbstract="false" name="IMAGE_TYPE_SELECTION_MASK" />
+ </UML:Enumeration>
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="358" isRoot="false" isAbstract="false" name="enumPaintStyles" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="359" isRoot="false" isAbstract="false" name="PAINTSTYLE_HARD" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="360" isRoot="false" isAbstract="false" name="PAINTSTYLE_SOFT" />
+ </UML:Enumeration>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="361" isRoot="false" isAbstract="false" name="PIXELTYPE" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="363" isRoot="false" isAbstract="false" name="KisSharedPtrVector" >
+ <UML:ModelElement.templateParameter>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="364" isRoot="false" isAbstract="false" name="T" />
+ </UML:ModelElement.templateParameter>
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="366" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="370" isRoot="false" isAbstract="false" name="KisSharedPtrVector" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="371" isRoot="false" isAbstract="false" name="pop_back" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="372" isRoot="false" isAbstract="false" name="erase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5331" type="376" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="375" isRoot="false" value="" type="374" isAbstract="false" name="it" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="377" isRoot="false" isAbstract="false" name="erase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5332" type="382" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="379" isRoot="false" value="" type="378" isAbstract="false" name="first" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="381" isRoot="false" value="" type="380" isAbstract="false" name="last" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="369" isRoot="false" isAbstract="false" name="super" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="365" isRoot="false" isAbstract="false" name="QValueVector" />
+ <UML:Package isSpecification="false" isLeaf="false" visibility="public" xmi.id="373" isRoot="false" isAbstract="false" name="typename super" >
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="374" isRoot="false" isAbstract="false" name="iterator" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="376" isRoot="false" isAbstract="false" name="test" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="378" isRoot="false" isAbstract="false" name="test2" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="380" isRoot="false" isAbstract="false" name="test3" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="382" isRoot="false" isAbstract="false" name="test4" />
+ </UML:Namespace.ownedElement>
+ </UML:Package>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="383" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="961" />
+ <UML:Generalization xmi.idref="964" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1135" isRoot="false" initialValue="" type="1028" isAbstract="false" name="m_undoHistory" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1136" isRoot="false" initialValue="" type="1032" isAbstract="false" name="m_uri" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1137" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_name" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1138" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_description" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1139" isRoot="false" initialValue="" type="438" isAbstract="false" name="m_profile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1140" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_width" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1141" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_height" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1142" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_xres" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1143" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_yres" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1144" isRoot="false" initialValue="" type="1038" isAbstract="false" name="m_unit" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1145" isRoot="false" initialValue="" type="427" isAbstract="false" name="m_colorStrategy" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1146" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_dirty" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1147" isRoot="false" initialValue="" type="475" isAbstract="false" name="m_dirtyRect" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1148" isRoot="false" initialValue="" type="404" isAbstract="false" name="m_bkg" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1149" isRoot="false" initialValue="" type="394" isAbstract="false" name="m_projection" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1150" isRoot="false" initialValue="" type="395" isAbstract="false" name="m_layers" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1151" isRoot="false" initialValue="" type="395" isAbstract="false" name="m_layerStack" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1152" isRoot="false" initialValue="" type="394" isAbstract="false" name="m_activeLayer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1154" isRoot="false" initialValue="" type="1153" isAbstract="false" name="m_nserver" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1155" isRoot="false" initialValue="" type="606" isAbstract="false" name="m_adapter" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1156" isRoot="false" initialValue="" type="690" isAbstract="false" name="m_guides" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1157" isRoot="false" initialValue="" type="978" isAbstract="false" name="m_dcop" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1158" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_pixmap" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1159" isRoot="false" initialValue="" type="447" isAbstract="false" name="m_annotations" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="967" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="968" isRoot="false" value="" type="606" isAbstract="false" name="undoAdapter" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="969" isRoot="false" value="" type="463" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="970" isRoot="false" value="" type="463" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="971" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="972" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="973" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="975" isRoot="false" value="" type="974" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="976" isRoot="false" isAbstract="false" name="~ KisImage" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="977" isRoot="false" isAbstract="false" name="dcopObject" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5333" type="978" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Composite the specified tile onto the projection layer." isSpecification="false" isLeaf="false" visibility="public" xmi.id="979" isRoot="false" isAbstract="false" name="renderToProjection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="980" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="981" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="982" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="983" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Paint the specified rect onto the painter, adjusting the colors using the/// given profile." isSpecification="false" isLeaf="false" visibility="public" xmi.id="984" isRoot="false" isAbstract="false" name="renderToPainter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="985" isRoot="false" value="" type="463" isAbstract="false" name="x1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="986" isRoot="false" value="" type="463" isAbstract="false" name="y1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="987" isRoot="false" value="" type="463" isAbstract="false" name="x2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="988" isRoot="false" value="" type="463" isAbstract="false" name="y2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="991" isRoot="false" value="" type="990" isAbstract="false" name="painter" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="992" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="993" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5334" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="994" isRoot="false" isAbstract="false" name="setName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="995" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="996" isRoot="false" isAbstract="false" name="description" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5335" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="997" isRoot="false" isAbstract="false" name="setDescription" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="998" isRoot="false" value="" type="549" isAbstract="false" name="description" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="999" isRoot="false" isAbstract="false" name="nextLayerName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5336" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1000" isRoot="false" isAbstract="false" name="resize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1001" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1002" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1003" isRoot="false" value="" type="558" isAbstract="false" name="cropLayers" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1004" isRoot="false" isAbstract="false" name="resize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1005" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1006" isRoot="false" value="" type="558" isAbstract="false" name="cropLayers" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1007" isRoot="false" isAbstract="false" name="scale" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1008" isRoot="false" value="" type="7" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1009" isRoot="false" value="" type="7" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1010" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1011" isRoot="false" value="" type="768" isAbstract="false" name="ftype" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1012" isRoot="false" isAbstract="false" name="rotate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1013" isRoot="false" value="" type="7" isAbstract="false" name="angle" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1014" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1015" isRoot="false" isAbstract="false" name="shear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1016" isRoot="false" value="" type="7" isAbstract="false" name="angleX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1017" isRoot="false" value="" type="7" isAbstract="false" name="angleY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1018" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1019" isRoot="false" isAbstract="false" name="convertTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1020" isRoot="false" value="" type="427" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1021" isRoot="false" value="" type="438" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1022" isRoot="false" value="" type="463" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Get the profile associated with this image" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1023" isRoot="false" isAbstract="false" name="profile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5337" type="438" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Set the profile associated with this image" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1024" isRoot="false" isAbstract="false" name="setProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1026" isRoot="false" value="" type="1025" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1027" isRoot="false" isAbstract="false" name="enableUndo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1029" isRoot="false" value="" type="1028" isAbstract="false" name="history" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1030" isRoot="false" isAbstract="false" name="colorStrategy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5338" type="427" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1031" isRoot="false" isAbstract="false" name="uri" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5339" type="1032" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1033" isRoot="false" isAbstract="false" name="uri" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1035" isRoot="false" value="" type="1034" isAbstract="false" name="uri" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1036" isRoot="false" isAbstract="false" name="unit" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5340" type="1038" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1039" isRoot="false" isAbstract="false" name="unit" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1041" isRoot="false" value="" type="1040" isAbstract="false" name="u" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Resolution of the image == XXX: per inch?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1042" isRoot="false" isAbstract="false" name="xRes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5341" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1043" isRoot="false" isAbstract="false" name="yRes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5342" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1044" isRoot="false" isAbstract="false" name="setResolution" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1045" isRoot="false" value="" type="7" isAbstract="false" name="xres" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1046" isRoot="false" value="" type="7" isAbstract="false" name="yres" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1047" isRoot="false" isAbstract="false" name="width" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5343" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1048" isRoot="false" isAbstract="false" name="height" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5344" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1049" isRoot="false" isAbstract="false" name="empty" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5345" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1050" isRoot="false" isAbstract="false" name="layers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5346" type="395" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Get the active painting device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1053" isRoot="false" isAbstract="false" name="activeDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5347" type="389" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1054" isRoot="false" isAbstract="false" name="activeLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5348" type="394" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1057" isRoot="false" isAbstract="false" name="activate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5349" type="394" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1058" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1059" isRoot="false" isAbstract="false" name="activateLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5350" type="394" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1060" isRoot="false" value="" type="463" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1061" isRoot="false" isAbstract="false" name="index" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5351" type="463" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1063" isRoot="false" value="" type="1062" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1064" isRoot="false" isAbstract="false" name="layer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5352" type="394" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1065" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1066" isRoot="false" isAbstract="false" name="layer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5353" type="394" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1067" isRoot="false" value="" type="924" isAbstract="false" name="npos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1068" isRoot="false" isAbstract="false" name="add" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5354" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1069" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1070" isRoot="false" value="" type="463" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1071" isRoot="false" isAbstract="false" name="rm" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1072" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1073" isRoot="false" isAbstract="false" name="raise" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5355" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1074" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1075" isRoot="false" isAbstract="false" name="lower" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5356" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1076" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1077" isRoot="false" isAbstract="false" name="top" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5357" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1078" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1079" isRoot="false" isAbstract="false" name="bottom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5358" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1080" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1081" isRoot="false" isAbstract="false" name="pos" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5359" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1082" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1083" isRoot="false" value="" type="463" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1084" isRoot="false" isAbstract="false" name="nlayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5360" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1085" isRoot="false" isAbstract="false" name="nHiddenLayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5361" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1086" isRoot="false" isAbstract="false" name="nLinkedLayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5362" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Merge all visible layers and discard hidden ones." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1087" isRoot="false" isAbstract="false" name="flatten" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1088" isRoot="false" isAbstract="false" name="mergeVisibleLayers" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1089" isRoot="false" isAbstract="false" name="mergeLinkedLayers" />
+ <UML:Operation comment="Merge the specified layer with the layer
+below this layer, remove the specified layer." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1090" isRoot="false" isAbstract="false" name="mergeLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1091" isRoot="false" value="" type="394" isAbstract="false" name="l" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1092" isRoot="false" isAbstract="false" name="bounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5363" type="475" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1093" isRoot="false" isAbstract="false" name="notify" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1094" isRoot="false" isAbstract="false" name="notify" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1095" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1096" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1097" isRoot="false" value="" type="463" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1098" isRoot="false" value="" type="463" isAbstract="false" name="height" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1099" isRoot="false" isAbstract="false" name="notify" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1100" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1101" isRoot="false" isAbstract="false" name="notifyLayersChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1102" isRoot="false" isAbstract="false" name="undoAdapter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5364" type="606" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1103" isRoot="false" isAbstract="false" name="guides" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5365" type="1104" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1105" isRoot="false" isAbstract="false" name="activeLayerChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1106" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1107" isRoot="false" isAbstract="false" name="activeSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1108" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1109" isRoot="false" isAbstract="false" name="selectionCreated" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1110" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1111" isRoot="false" isAbstract="false" name="selectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1112" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1113" isRoot="false" isAbstract="false" name="update" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1114" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1115" isRoot="false" value="" type="476" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1116" isRoot="false" isAbstract="false" name="layersChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1117" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1118" isRoot="false" isAbstract="false" name="sizeChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1119" isRoot="false" value="" type="384" isAbstract="false" name="image" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1120" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1121" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1122" isRoot="false" isAbstract="false" name="profileChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1123" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1124" isRoot="false" isAbstract="false" name="slotSelectionChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1125" isRoot="false" isAbstract="false" name="slotSelectionCreated" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1126" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5366" type="1128" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1127" isRoot="false" value="" type="974" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1129" isRoot="false" isAbstract="false" name="init" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1130" isRoot="false" value="" type="606" isAbstract="false" name="adapter" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1131" isRoot="false" value="" type="463" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1132" isRoot="false" value="" type="463" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1133" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1134" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="384" isRoot="false" isAbstract="false" name="KisImageSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="385" isRoot="false" isAbstract="false" name="vKisImageSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="386" isRoot="false" isAbstract="false" name="vKisImageSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="387" isRoot="false" isAbstract="false" name="vKisImageSP_cit" />
+ <UML:Class comment="Class modelled on QPaintDevice." isSpecification="false" isLeaf="false" visibility="public" xmi.id="388" isRoot="false" isAbstract="false" name="KisPaintDevice" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1433" />
+ <UML:Generalization xmi.idref="1436" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1627" isRoot="false" initialValue="" type="1443" isAbstract="false" name="m_owner" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1628" isRoot="false" initialValue="" type="1398" isAbstract="false" name="m_datamanager" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1629" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_x" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1630" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_y" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1631" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_visible" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1632" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_name" />
+ <UML:Attribute comment="// Operation used to composite this layer with the layers _under_ this layer" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1633" isRoot="false" initialValue="" type="314" isAbstract="false" name="m_compositeOp" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1634" isRoot="false" initialValue="" type="427" isAbstract="false" name="m_colorStrategy" />
+ <UML:Attribute comment="// Cached for quick access" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1635" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_pixelSize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1636" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_nChannels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1637" isRoot="false" initialValue="" type="438" isAbstract="false" name="m_profile" />
+ <UML:Attribute comment="// Whether there is a selection valid for this layer" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1647" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_hasSelection" />
+ <UML:Attribute comment="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1648" isRoot="false" initialValue="" type="399" isAbstract="false" name="m_selection" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1439" isRoot="false" isAbstract="false" name="KisPaintDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1440" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1441" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1442" isRoot="false" isAbstract="false" name="KisPaintDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1444" isRoot="false" value="" type="1443" isAbstract="false" name="img" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1445" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1446" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1447" isRoot="false" isAbstract="false" name="KisPaintDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1449" isRoot="false" value="" type="1448" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1450" isRoot="false" isAbstract="false" name="~ KisPaintDevice" />
+ <UML:Operation comment="// Implement KisRenderInterface" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1451" isRoot="false" isAbstract="false" name="write" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5367" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1452" isRoot="false" value="" type="1365" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1453" isRoot="false" isAbstract="false" name="read" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5368" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1454" isRoot="false" value="" type="1365" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1455" isRoot="false" isAbstract="false" name="shouldDrawBorder" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5369" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1456" isRoot="false" isAbstract="false" name="move" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1457" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1458" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1459" isRoot="false" isAbstract="false" name="move" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1460" isRoot="false" value="" type="498" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1461" isRoot="false" isAbstract="false" name="moveCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5370" type="1465" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1462" isRoot="false" value="" type="608" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1463" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1464" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1466" isRoot="false" isAbstract="false" name="visible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5371" type="1467" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1468" isRoot="false" isAbstract="false" name="setVisible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1469" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1470" isRoot="false" isAbstract="false" name="tqcontains" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5372" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1471" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1472" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1473" isRoot="false" isAbstract="false" name="tqcontains" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5373" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1474" isRoot="false" value="" type="498" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Retrieve the bounds of the paint device. The size is not exact,
+but may be larger if the underlying datamanager works that way.
+For instance, the tiled datamanager keeps the extent to the nearest
+multiple of 64." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1475" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1476" isRoot="false" value="" type="1371" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1477" isRoot="false" value="" type="1371" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1478" isRoot="false" value="" type="1371" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1479" isRoot="false" value="" type="1371" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1480" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5374" type="475" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the exact bounds of this paint device. This may be very slow,
+especially on larger paint devices because it does a linear scanline search." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1481" isRoot="false" isAbstract="false" name="exactBounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1482" isRoot="false" value="" type="1371" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1483" isRoot="false" value="" type="1371" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1484" isRoot="false" value="" type="1371" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1485" isRoot="false" value="" type="1371" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1486" isRoot="false" isAbstract="false" name="exactBounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5375" type="475" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1487" isRoot="false" isAbstract="false" name="crop" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1488" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1489" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1490" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1491" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1492" isRoot="false" isAbstract="false" name="crop" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1493" isRoot="false" value="" type="475" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1494" isRoot="false" isAbstract="false" name="readBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5376" type="1395" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1495" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1496" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1497" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1498" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1499" isRoot="false" isAbstract="false" name="writeBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1500" isRoot="false" value="" type="1395" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1501" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1502" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1503" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1504" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment=" Converts the paint device to a different colorspace" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1505" isRoot="false" isAbstract="false" name="convertTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1506" isRoot="false" value="" type="427" isAbstract="false" name="dstColorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1507" isRoot="false" value="" type="438" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1508" isRoot="false" value="" type="463" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Fill this paint device with the data from img;" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1509" isRoot="false" isAbstract="false" name="convertFromImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1511" isRoot="false" value="" type="1510" isAbstract="false" name="img" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Create an RGBA QImage from a rectangle in the paint device.
+
+x, y left-top point of the rect of pixels
+w, h width and height in pixels
+profile RGB profile to use in conversion. May be 0, in which
+case it's up to the colour strategy to choose a profile (most
+like sRGB)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1512" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5377" type="879" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1513" isRoot="false" value="" type="438" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1514" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1515" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1516" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1517" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Create an RGBA QImage from a rectangle in the paint device.
+
+The dimensions is so that it takes what is currently on screen. relies on the image() to return an image.
+profile RGB profile to use in conversion. May be 0, in which
+case it's up to the colour strategy to choose a profile (most
+like sRGB)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1518" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5378" type="879" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1519" isRoot="false" value="" type="438" isAbstract="false" name="dstProfile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1520" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5379" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1521" isRoot="false" isAbstract="false" name="setName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1522" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Fill c and opacity with the values found at x and y.
+The color values will be transformed from the profile of
+ this paint device to the display profile.
+
+@return true if the operation was succesful." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1523" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5380" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1524" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1525" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1527" isRoot="false" value="" type="1526" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1528" isRoot="false" value="" type="1188" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Set the specified pixel to the specified color. Note that this
+bypasses KisPainter. the PaintDevice is here used as an equivalent
+to QImage, not QPixmap. This means that this is not undoable; also,
+there is no compositing with an existing value at this location.
+
+ The color values will be transformed from the display profile to
+ the paint device profile.
+
+@return true if the operation was succesful" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1529" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5381" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1530" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1531" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1532" isRoot="false" value="" type="593" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1533" isRoot="false" value="" type="1163" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return a KisPixel wrapper around these bytes. If there are not enough
+bytes, bad things will happen. XXX: use vectors?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1534" isRoot="false" isAbstract="false" name="toPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5382" type="1225" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1535" isRoot="false" value="" type="1395" isAbstract="false" name="bytes" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1536" isRoot="false" isAbstract="false" name="toPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5383" type="1202" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1538" isRoot="false" value="" type="1537" isAbstract="false" name="bytes" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1539" isRoot="false" isAbstract="false" name="alpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5384" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1540" isRoot="false" isAbstract="false" name="colorStrategy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5385" type="427" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the icm profile associated with this layer, or
+the profile associated with the image if the color space of
+this layer is the same as the color space of the image,
+or 0." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1541" isRoot="false" isAbstract="false" name="profile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5386" type="438" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Set the profile associated with this layer to the specified profile
+or reset to 0 if the profile does not have the same colorspace signature
+as the color model associated with this paint device." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1542" isRoot="false" isAbstract="false" name="setProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1543" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1544" isRoot="false" isAbstract="false" name="compositeOp" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5387" type="314" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1545" isRoot="false" isAbstract="false" name="setCompositeOp" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1546" isRoot="false" value="" type="314" isAbstract="false" name="compositeOp" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1547" isRoot="false" isAbstract="false" name="getX" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5388" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1548" isRoot="false" isAbstract="false" name="getY" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5389" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1549" isRoot="false" isAbstract="false" name="setX" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1550" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1551" isRoot="false" isAbstract="false" name="setY" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1552" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the number of bytes a pixel takes" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1553" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5390" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the number of channels a pixel takes" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1554" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5391" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1555" isRoot="false" isAbstract="false" name="image" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5392" type="1443" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1558" isRoot="false" isAbstract="false" name="setImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1559" isRoot="false" value="" type="1443" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1560" isRoot="false" isAbstract="false" name="scale" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1561" isRoot="false" value="" type="7" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1562" isRoot="false" value="" type="7" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1563" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1564" isRoot="false" value="" type="768" isAbstract="false" name="ftype" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1565" isRoot="false" isAbstract="false" name="rotate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1566" isRoot="false" value="" type="7" isAbstract="false" name="angle" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1567" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1568" isRoot="false" isAbstract="false" name="shear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1569" isRoot="false" value="" type="7" isAbstract="false" name="angleX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1570" isRoot="false" value="" type="7" isAbstract="false" name="angleY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1571" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1572" isRoot="false" isAbstract="false" name="transform" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1573" isRoot="false" value="" type="463" isAbstract="false" name="xscale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1574" isRoot="false" value="" type="463" isAbstract="false" name="yscale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1575" isRoot="false" value="" type="463" isAbstract="false" name="xshear" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1576" isRoot="false" value="" type="463" isAbstract="false" name="yshear" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1577" isRoot="false" value="" type="463" isAbstract="false" name="denominator" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1578" isRoot="false" value="" type="463" isAbstract="false" name="xtranslate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1579" isRoot="false" value="" type="463" isAbstract="false" name="ytranslate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1580" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Mirror the device along the X axis" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1581" isRoot="false" isAbstract="false" name="mirrorX" />
+ <UML:Operation comment="Mirror the device along the Y axis" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1582" isRoot="false" isAbstract="false" name="mirrorY" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1583" isRoot="false" isAbstract="false" name="getMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5393" type="1359" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1584" isRoot="false" isAbstract="false" name="rollback" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1585" isRoot="false" value="" type="1359" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1586" isRoot="false" isAbstract="false" name="rollforward" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1587" isRoot="false" value="" type="1359" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of an rectangle" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1588" isRoot="false" isAbstract="false" name="createRectIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5394" type="1429" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1589" isRoot="false" value="" type="463" isAbstract="false" name="left" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1590" isRoot="false" value="" type="463" isAbstract="false" name="top" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1591" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1592" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1593" isRoot="false" value="" type="558" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of a horizontal line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1594" isRoot="false" isAbstract="false" name="createHLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5395" type="1431" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1595" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1596" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1597" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1598" isRoot="false" value="" type="558" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of a vertical line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1599" isRoot="false" isAbstract="false" name="createVLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5396" type="1430" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1600" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1601" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1602" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1603" isRoot="false" value="" type="558" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the current selection or create one if this layers hasn't got a selection yet." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1604" isRoot="false" isAbstract="false" name="selection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5397" type="399" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Set the specified selection object as the active selection for this layer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1605" isRoot="false" isAbstract="false" name="setSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1606" isRoot="false" value="" type="399" isAbstract="false" name="selection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Adds the specified selection to the currently active selection for this layer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1607" isRoot="false" isAbstract="false" name="addSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1608" isRoot="false" value="" type="399" isAbstract="false" name="selection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Subtracts the specified selection from the currently active selection for this layer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1609" isRoot="false" isAbstract="false" name="subtractSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1610" isRoot="false" value="" type="399" isAbstract="false" name="selection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Whether there is a valid selection for this layer." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1611" isRoot="false" isAbstract="false" name="hasSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5398" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Removes the current selection for this layer." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1612" isRoot="false" isAbstract="false" name="removeSelection" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1613" isRoot="false" isAbstract="false" name="visibilityChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1614" isRoot="false" value="" type="389" isAbstract="false" name="device" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1615" isRoot="false" isAbstract="false" name="positionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1616" isRoot="false" value="" type="389" isAbstract="false" name="device" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1617" isRoot="false" isAbstract="false" name="ioProgress" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1619" isRoot="false" value="" type="1618" isAbstract="false" name="percentage" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1620" isRoot="false" isAbstract="false" name="selectionChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1621" isRoot="false" isAbstract="false" name="selectionCreated" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1622" isRoot="false" isAbstract="false" name="profileChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1623" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1624" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5399" type="1626" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1625" isRoot="false" value="" type="1448" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1638" isRoot="false" isAbstract="false" name="accept" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1640" isRoot="false" value="" type="1639" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1641" isRoot="false" isAbstract="false" name="accept" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1643" isRoot="false" value="" type="1642" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1644" isRoot="false" isAbstract="false" name="accept" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1646" isRoot="false" value="" type="1645" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="389" isRoot="false" isAbstract="false" name="KisPaintDeviceSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="390" isRoot="false" isAbstract="false" name="vKisPaintDeviceSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="391" isRoot="false" isAbstract="false" name="vKisPaintDeviceSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="392" isRoot="false" isAbstract="false" name="vKisPaintDeviceSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="393" isRoot="false" isAbstract="false" name="KisLayer" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="394" isRoot="false" isAbstract="false" name="KisLayerSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="395" isRoot="false" isAbstract="false" name="vKisLayerSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="396" isRoot="false" isAbstract="false" name="vKisLayerSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="397" isRoot="false" isAbstract="false" name="vKisLayerSP_cit" />
+ <UML:Class comment="KisSelection contains a byte-map representation of a layer, where
+the value of a byte signifies whether a corresponding pixel is selected, or not.
+" isSpecification="false" isLeaf="false" visibility="public" xmi.id="398" isRoot="false" isAbstract="false" name="KisSelection" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1649" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1671" isRoot="false" initialValue="" type="389" isAbstract="false" name="m_parentLayer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1672" isRoot="false" initialValue="" type="434" isAbstract="false" name="m_alpha" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1673" isRoot="false" initialValue="" type="591" isAbstract="false" name="m_tqmaskColor" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1652" isRoot="false" isAbstract="false" name="KisSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1653" isRoot="false" value="" type="389" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1654" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1655" isRoot="false" isAbstract="false" name="KisSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1656" isRoot="false" value="" type="389" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1657" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1658" isRoot="false" value="" type="591" isAbstract="false" name="c" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1659" isRoot="false" isAbstract="false" name="~ KisSelection" />
+ <UML:Operation comment="// // Returns selectedness, or 0 if invalid coordinates// QUANTUM selected(Q_INT32 x, Q_INT32 y);// // void setSelected(Q_INT32 x, Q_INT32 y, QUANTUM s);" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1660" isRoot="false" isAbstract="false" name="tqmaskImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5400" type="879" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1661" isRoot="false" isAbstract="false" name="select" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1662" isRoot="false" value="" type="475" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1663" isRoot="false" isAbstract="false" name="invert" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1664" isRoot="false" value="" type="475" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1665" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1666" isRoot="false" value="" type="475" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Keep the selection but set the tqmask to color c// Note: it is intentional to deep-copy the color// since the selection will want to own its own copy." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1667" isRoot="false" isAbstract="false" name="setMaskColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1669" isRoot="false" value="" type="1668" isAbstract="false" name="c" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1670" isRoot="false" isAbstract="false" name="selectedRect" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5401" type="475" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="399" isRoot="false" isAbstract="false" name="KisSelectionSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="400" isRoot="false" isAbstract="false" name="vKisSelectionSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="401" isRoot="false" isAbstract="false" name="vKisSelectionSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="402" isRoot="false" isAbstract="false" name="vKisSelectionSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="403" isRoot="false" isAbstract="false" name="KisBackground" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="404" isRoot="false" isAbstract="false" name="KisBackgroundSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="405" isRoot="false" isAbstract="false" name="KisHistogram" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="406" isRoot="false" isAbstract="false" name="KisHistogramSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="407" isRoot="false" isAbstract="false" name="vKisHistogramSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="408" isRoot="false" isAbstract="false" name="vKisHistogramSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="409" isRoot="false" isAbstract="false" name="vKisHistogramSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="410" isRoot="false" isAbstract="false" name="KisPaintOp" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="411" isRoot="false" isAbstract="false" name="KisPaintOpSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="412" isRoot="false" isAbstract="false" name="KisPaintOpFactory" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="413" isRoot="false" isAbstract="false" name="KisPaintOpFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="414" isRoot="false" isAbstract="false" name="KisToolFactory" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="415" isRoot="false" isAbstract="false" name="KisToolFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="416" isRoot="false" isAbstract="false" name="KisPluginFactory" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="417" isRoot="false" isAbstract="false" name="KisPluginFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="418" isRoot="false" isAbstract="false" name="KisTool" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="419" isRoot="false" isAbstract="false" name="KisToolSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="420" isRoot="false" isAbstract="false" name="vKisTool" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="421" isRoot="false" isAbstract="false" name="vKisTool_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="422" isRoot="false" isAbstract="false" name="vKisTool_cit" />
+ <UML:Class comment="// Change the following two lines to switch (at compiletime) to another datamanager/**
+KisDataManager defines the interface that modules responsible for
+storing and retrieving data must inmplement. Data modules, like
+the tile manager, are responsible for:
+
+* Storing undo/redo data
+* Offering ordererd and unordered iterators over rects of pixels
+* (eventually) efficiently loading and saving data in a format
+that may allow deferred loading.
+
+A datamanager knows nothing about the type of pixel data except
+how many Q_UINT8's a single pixel takes." isSpecification="false" isLeaf="false" visibility="public" xmi.id="423" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1349" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1352" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1353" isRoot="false" value="" type="924" isAbstract="false" name="pixelSize" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1354" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1356" isRoot="false" value="" type="1355" isAbstract="false" name="dm" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1357" isRoot="false" isAbstract="false" name="getMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5402" type="1359" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1360" isRoot="false" isAbstract="false" name="rollback" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1361" isRoot="false" value="" type="1359" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1362" isRoot="false" isAbstract="false" name="rollforward" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1363" isRoot="false" value="" type="1359" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1364" isRoot="false" isAbstract="false" name="write" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5403" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1366" isRoot="false" value="" type="1365" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1367" isRoot="false" isAbstract="false" name="read" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5404" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1368" isRoot="false" value="" type="1365" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1369" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5405" type="924" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1370" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1372" isRoot="false" value="" type="1371" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1373" isRoot="false" value="" type="1371" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1374" isRoot="false" value="" type="1371" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1375" isRoot="false" value="" type="1371" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1376" isRoot="false" isAbstract="false" name="setExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1377" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1378" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1379" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1380" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1381" isRoot="false" isAbstract="false" name="setExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1382" isRoot="false" value="" type="476" isAbstract="false" name="rect" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1383" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1384" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1385" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1386" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1387" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1389" isRoot="false" value="" type="1388" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1390" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1391" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1392" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1393" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1394" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1396" isRoot="false" value="" type="1395" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1397" isRoot="false" isAbstract="false" name="paste" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1399" isRoot="false" value="" type="1398" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1400" isRoot="false" value="" type="463" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1401" isRoot="false" value="" type="463" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1402" isRoot="false" value="" type="463" isAbstract="false" name="dx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1403" isRoot="false" value="" type="463" isAbstract="false" name="dy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1404" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1405" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1406" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5406" type="1395" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1407" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1408" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1409" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1410" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1411" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1412" isRoot="false" value="" type="1395" isAbstract="false" name="data" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1413" isRoot="false" isAbstract="false" name="readBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5407" type="1395" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1414" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1415" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1416" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1417" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1418" isRoot="false" isAbstract="false" name="writeBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1419" isRoot="false" value="" type="1395" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1420" isRoot="false" value="" type="463" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1421" isRoot="false" value="" type="463" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1422" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1423" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="424" isRoot="false" isAbstract="false" name="KisDataManagerSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="425" isRoot="false" isAbstract="false" name="vKisSegments" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="426" isRoot="false" isAbstract="false" name="KisStrategyColorSpace" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="427" isRoot="false" isAbstract="false" name="KisStrategyColorSpaceSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="428" isRoot="false" isAbstract="false" name="KisStrategyColorSpaceMap" />
+ <UML:Class comment="Kivio - Visual Modelling and Flowcharting
+Copyright (C) 2000-2001 theKompany.com &amp; Dave Marotti
+Copyright (C) 2002 Patrick Julien &lt;freak@codepimps.org>
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="429" isRoot="false" isAbstract="false" name="KisGuide" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="673" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="684" isRoot="false" initialValue="" type="7" isAbstract="false" name="pos" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="686" isRoot="false" initialValue="" type="685" isAbstract="false" name="buffer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="687" isRoot="false" initialValue="" type="558" isAbstract="false" name="hasBuffer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="688" isRoot="false" initialValue="" type="558" isAbstract="false" name="selected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="689" isRoot="false" initialValue="" type="678" isAbstract="false" name="orient" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="676" isRoot="false" isAbstract="false" name="KisGuide" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="679" isRoot="false" value="" type="678" isAbstract="false" name="o" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="680" isRoot="false" isAbstract="false" name="~ KisGuide" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="681" isRoot="false" isAbstract="false" name="orientation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5408" type="678" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="682" isRoot="false" isAbstract="false" name="position" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5409" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="683" isRoot="false" isAbstract="false" name="isSelected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5410" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="430" isRoot="false" isAbstract="false" name="KisGuideSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="431" isRoot="false" isAbstract="false" name="KisAlphaMask" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="432" isRoot="false" isAbstract="false" name="KisAlphaMaskSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="433" isRoot="false" isAbstract="false" name="KisColorSpaceAlpha" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="434" isRoot="false" isAbstract="false" name="KisColorSpaceAlphaSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="435" isRoot="false" isAbstract="false" name="KisFilter" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="436" isRoot="false" isAbstract="false" name="KisFilterSP" />
+ <UML:Class comment=" kis_profile.h - part of Krayon
+
+ Copyright (c) 2000 Matthias Elter &lt;elter@kde.org>
+ 2004 Boudewijn Rempt &lt;boud@valdyas.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+" isSpecification="false" isLeaf="false" visibility="public" xmi.id="437" isRoot="false" isAbstract="false" name="KisProfile" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="917" />
+ <UML:Generalization xmi.idref="920" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="949" isRoot="false" initialValue="" type="930" isAbstract="false" name="m_profile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="950" isRoot="false" initialValue="" type="939" isAbstract="false" name="m_colorSpaceSignature" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="951" isRoot="false" initialValue="" type="941" isAbstract="false" name="m_deviceClass" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="952" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_productName" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="953" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_productDescription" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="954" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_productInfo" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="955" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_manufacturer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="956" isRoot="false" initialValue="" type="924" isAbstract="false" name="m_lcmsColorType" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="923" isRoot="false" isAbstract="false" name="KisProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="925" isRoot="false" value="" type="924" isAbstract="false" name="colorType" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="926" isRoot="false" isAbstract="false" name="KisProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="927" isRoot="false" value="" type="549" isAbstract="false" name="file" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="928" isRoot="false" value="" type="924" isAbstract="false" name="colorType" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="929" isRoot="false" isAbstract="false" name="KisProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="932" isRoot="false" value="" type="931" isAbstract="false" name="profile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="933" isRoot="false" value="" type="924" isAbstract="false" name="colorType" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="934" isRoot="false" isAbstract="false" name="~ KisProfile" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="935" isRoot="false" isAbstract="false" name="loadAsync" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5411" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="936" isRoot="false" isAbstract="false" name="saveAsync" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5412" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="937" isRoot="false" isAbstract="false" name="img" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5413" type="879" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="938" isRoot="false" isAbstract="false" name="colorSpaceSignature" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5414" type="939" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="940" isRoot="false" isAbstract="false" name="deviceClass" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5415" type="941" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="942" isRoot="false" isAbstract="false" name="productName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5416" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="943" isRoot="false" isAbstract="false" name="productDescription" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5417" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="944" isRoot="false" isAbstract="false" name="productInfo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5418" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="945" isRoot="false" isAbstract="false" name="manufacturer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5419" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="946" isRoot="false" isAbstract="false" name="profile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5420" type="930" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="947" isRoot="false" isAbstract="false" name="colorType" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5421" type="924" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="948" isRoot="false" isAbstract="false" name="init" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5422" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="438" isRoot="false" isAbstract="false" name="KisProfileSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="439" isRoot="false" isAbstract="false" name="vKisProfileSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="440" isRoot="false" isAbstract="false" name="KisChannelInfo" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="441" isRoot="false" isAbstract="false" name="KisChannelInfoSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="442" isRoot="false" isAbstract="false" name="vKisChannelInfoSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="443" isRoot="false" isAbstract="false" name="vKisChannelInfoSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="444" isRoot="false" isAbstract="false" name="vKisChannelInfoSP_cit" />
+ <UML:Class comment="This file is part of the KDE project
+
+Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+An data extension mechanism for Chalk.
+
+An annotation can be of something like a QByteArray or a QString op a more specific
+datatype that can be attached to an image (or maybe later, if needed, to a layer)
+and contains data that must be associated with an image for purposes of import/export." isSpecification="false" isLeaf="false" visibility="public" xmi.id="445" isRoot="false" isAbstract="false" name="KisAnnotation" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="656" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="670" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_type" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="671" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_description" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="672" isRoot="false" initialValue="" type="662" isAbstract="false" name="m_annotation" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="659" isRoot="false" isAbstract="false" name="KisAnnotation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="660" isRoot="false" value="" type="549" isAbstract="false" name="type" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="661" isRoot="false" value="" type="549" isAbstract="false" name="description" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="664" isRoot="false" value="" type="663" isAbstract="false" name="data" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="665" isRoot="false" isAbstract="false" name="type" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5423" type="666" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="667" isRoot="false" isAbstract="false" name="description" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5424" type="666" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="668" isRoot="false" isAbstract="false" name="annotation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5425" type="669" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="446" isRoot="false" isAbstract="false" name="KisAnnotationSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="447" isRoot="false" isAbstract="false" name="vKisAnnotationSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="448" isRoot="false" isAbstract="false" name="vKisAnnotationSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="449" isRoot="false" isAbstract="false" name="vKisAnnotationSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="450" isRoot="false" isAbstract="false" name="KisFileFormat" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="451" isRoot="false" isAbstract="false" name="KisFileFormatSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="452" isRoot="false" isAbstract="false" name="vKisFileFormatSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="453" isRoot="false" isAbstract="false" name="vKisFileFormatSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="454" isRoot="false" isAbstract="false" name="vKisFileFormatSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="455" isRoot="false" isAbstract="false" name=TQWIDGET_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="456" isRoot="false" isAbstract="false" name="KisRect" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="457" isRoot="false" isAbstract="false" name="KisPoint" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="463" isRoot="false" isAbstract="false" name="Q_INT32" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="475" isRoot="false" isAbstract="false" name="QRect" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="497" isRoot="false" isAbstract="false" name=TQPOINT_OBJECT_NAME_STRING />
+ <UML:Class comment="The canvas subject is the subset of operations that are directy available to
+tools." isSpecification="false" isLeaf="false" visibility="public" xmi.id="528" isRoot="false" isAbstract="false" name="KisPainterControllerInterface" >
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="580" isRoot="false" isAbstract="false" name="KisCanvasSubject" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="581" isRoot="false" isAbstract="false" name="~ KisCanvasSubject" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="582" isRoot="false" isAbstract="true" name="attach" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="584" isRoot="false" value="" type="583" isAbstract="false" name="observer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="585" isRoot="false" isAbstract="true" name="detach" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="586" isRoot="false" value="" type="583" isAbstract="false" name="observer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="587" isRoot="false" isAbstract="true" name="notify" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="588" isRoot="false" isAbstract="true" name="currentImg" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5426" type="384" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="589" isRoot="false" isAbstract="true" name="currentImgName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5427" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="590" isRoot="false" isAbstract="true" name="bgColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5428" type="591" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="592" isRoot="false" isAbstract="true" name="setBGColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="594" isRoot="false" value="" type="593" isAbstract="false" name="c" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="595" isRoot="false" isAbstract="true" name="fgColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5429" type="591" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="596" isRoot="false" isAbstract="true" name="setFGColor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="597" isRoot="false" value="" type="593" isAbstract="false" name="c" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="598" isRoot="false" isAbstract="true" name="currentBrush" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5430" type="599" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="600" isRoot="false" isAbstract="true" name="currentPattern" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5431" type="601" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="602" isRoot="false" isAbstract="true" name="currentGradient" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5432" type="603" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="604" isRoot="false" isAbstract="true" name="zoomFactor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5433" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="605" isRoot="false" isAbstract="true" name="undoAdapter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5434" type="606" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="607" isRoot="false" isAbstract="true" name="canvasController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5435" type="608" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="609" isRoot="false" isAbstract="true" name="toolController" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5436" type="610" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="611" isRoot="false" isAbstract="true" name="document" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5437" type="612" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="613" isRoot="false" isAbstract="true" name="progressDisplay" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5438" type="614" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="615" isRoot="false" isAbstract="true" name="selectionManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5439" type="616" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="617" isRoot="false" isAbstract="true" name="filterRegistry" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5440" type="618" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="619" isRoot="false" isAbstract="true" name="filterGet" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5441" type="436" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="620" isRoot="false" value="" type="555" isAbstract="false" name="id" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="621" isRoot="false" isAbstract="true" name="filterList" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5442" type="570" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="622" isRoot="false" isAbstract="true" name="setCanvasCursor" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5443" type="579" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="624" isRoot="false" value="" type="623" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="625" isRoot="false" isAbstract="false" name="KisCanvasSubject" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="627" isRoot="false" value="" type="626" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="628" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5444" type="630" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="629" isRoot="false" value="" type="626" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="529" isRoot="false" isAbstract="false" name="KisCanvasObserver" >
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="530" isRoot="false" isAbstract="false" name="KisCanvasObserver" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="531" isRoot="false" isAbstract="false" name="~ KisCanvasObserver" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="532" isRoot="false" isAbstract="true" name="update" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="534" isRoot="false" value="" type="533" isAbstract="false" name="subject" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="535" isRoot="false" isAbstract="false" name="KisCanvasObserver" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="537" isRoot="false" value="" type="536" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="538" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5445" type="540" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="539" isRoot="false" value="" type="536" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="This file is part of the KDE project
+
+Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+Chalk has a large number of extensible resources. Think:
+
+- Brushes
+- Palettes
+- Patterns
+- Gradients
+- Color models
+- Filters
+- Composition operations
+- Paint operations
+- Tools
+- Docker tabs
+
+and more...
+
+Many of these resources are stored in KisGenericRegistry-based
+registries. If we store these resources with a descriptive string
+as a key use the same string in our UI, then our UI will not be
+localizable, because the identifications of particular resources
+will be stored in files, and those files need to be exchangeable.
+
+So, instead we use and ID class that couples an identification
+string that will be the same across all languages, an i18n-able
+string that will be used in comboboxes and that has a fast equality
+operator to make it well suited for use as key in a registry map.
+
+That last bit has not been solved yet.
+" isSpecification="false" isLeaf="false" visibility="public" xmi.id="541" isRoot="false" isAbstract="false" name="KisID" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="543" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="568" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_id" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="569" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_name" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="546" isRoot="false" isAbstract="false" name="KisID" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="547" isRoot="false" isAbstract="false" name="KisID" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="550" isRoot="false" value="" type="549" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="551" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="552" isRoot="false" isAbstract="false" name="id" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5446" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="553" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5447" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="554" isRoot="false" isAbstract="false" name="operator ==" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5448" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="556" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="557" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="559" isRoot="false" isAbstract="false" name="operator !=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5449" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="560" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="561" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="562" isRoot="false" isAbstract="false" name="operator &lt;" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5450" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="563" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="564" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="565" isRoot="false" isAbstract="false" name="operator >" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5451" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="566" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="567" isRoot="false" value="" type="555" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="542" isRoot="false" isAbstract="false" name="KShared" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="548" isRoot="false" isAbstract="false" name=TQSTRING_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="558" isRoot="false" isAbstract="false" name="bool" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="570" isRoot="false" isAbstract="false" name="KisIDList" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="571" isRoot="false" isAbstract="false" name="KoDocument" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="572" isRoot="false" isAbstract="false" name="KisBrush" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="573" isRoot="false" isAbstract="false" name="KisGradient" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="574" isRoot="false" isAbstract="false" name="KisPattern" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="575" isRoot="false" isAbstract="false" name="KisUndoAdapter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="576" isRoot="false" isAbstract="false" name="KisProgressDisplayInterface" />
+ <UML:Class comment="The selection manager is responsible selections
+and the clipboard." isSpecification="false" isLeaf="false" visibility="public" xmi.id="577" isRoot="false" isAbstract="false" name="KisSelectionManager" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1798" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1834" isRoot="false" initialValue="" type="1699" isAbstract="false" name="m_parent" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1835" isRoot="false" initialValue="" type="1803" isAbstract="false" name="m_doc" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1836" isRoot="false" initialValue="" type="399" isAbstract="false" name="m_previousSelection" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1838" isRoot="false" initialValue="" type="1837" isAbstract="false" name="m_clipboard" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1839" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_copy" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1840" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_cut" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1841" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_paste" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1842" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_selectAll" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1843" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_deselect" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1844" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_clear" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1845" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_reselect" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1846" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_invert" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1847" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_toNewLayer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1848" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_feather" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1849" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_border" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1850" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_expand" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1851" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_smooth" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1852" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_contract" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1853" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_grow" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1854" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_similar" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1855" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_transform" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1856" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_load" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1857" isRoot="false" initialValue="" type="1809" isAbstract="false" name="m_save" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1859" isRoot="false" initialValue="" type="1858" isAbstract="false" name="m_pluginActions" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1801" isRoot="false" isAbstract="false" name="KisSelectionManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1802" isRoot="false" value="" type="1699" isAbstract="false" name="tqparent" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1804" isRoot="false" value="" type="1803" isAbstract="false" name="doc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1805" isRoot="false" isAbstract="false" name="~ KisSelectionManager" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1806" isRoot="false" isAbstract="false" name="setup" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1807" isRoot="false" value="" type="1701" isAbstract="false" name="collection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1808" isRoot="false" isAbstract="false" name="addSelectionAction" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1810" isRoot="false" value="" type="1809" isAbstract="false" name="action" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1811" isRoot="false" isAbstract="false" name="updateGUI" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1812" isRoot="false" isAbstract="false" name="imgSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1813" isRoot="false" value="" type="384" isAbstract="false" name="img" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1814" isRoot="false" isAbstract="false" name="clipboardDataChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1815" isRoot="false" isAbstract="false" name="cut" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1816" isRoot="false" isAbstract="false" name="copy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1817" isRoot="false" isAbstract="false" name="paste" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5452" type="394" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1818" isRoot="false" isAbstract="false" name="selectAll" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1819" isRoot="false" isAbstract="false" name="unSelectAll" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1820" isRoot="false" isAbstract="false" name="clear" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1821" isRoot="false" isAbstract="false" name="reselect" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1822" isRoot="false" isAbstract="false" name="invert" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1823" isRoot="false" isAbstract="false" name="copySelectionToNewLayer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1824" isRoot="false" isAbstract="false" name="feather" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1825" isRoot="false" isAbstract="false" name="border" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1826" isRoot="false" isAbstract="false" name="expand" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1827" isRoot="false" isAbstract="false" name="smooth" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1828" isRoot="false" isAbstract="false" name="contract" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1829" isRoot="false" isAbstract="false" name="grow" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1830" isRoot="false" isAbstract="false" name="similar" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1831" isRoot="false" isAbstract="false" name="transform" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1832" isRoot="false" isAbstract="false" name="load" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1833" isRoot="false" isAbstract="false" name="save" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="578" isRoot="false" isAbstract="false" name="KisFilterRegistry" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="579" isRoot="false" isAbstract="false" name="QCursor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="591" isRoot="false" isAbstract="false" name="QColor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="631" isRoot="false" isAbstract="false" name="KisGenericRegistry" >
+ <UML:ModelElement.templateParameter>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="632" isRoot="false" isAbstract="false" name="_T" />
+ </UML:ModelElement.templateParameter>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="655" isRoot="false" initialValue="" type="633" isAbstract="false" name="m_storage" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="634" isRoot="false" isAbstract="false" name="KisGenericRegistry" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="635" isRoot="false" isAbstract="false" name="~ KisGenericRegistry" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="636" isRoot="false" isAbstract="false" name="add" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="637" isRoot="false" value="" type="632" isAbstract="false" name="item" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="638" isRoot="false" isAbstract="false" name="add" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="639" isRoot="false" value="" type="541" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="640" isRoot="false" value="" type="632" isAbstract="false" name="item" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="641" isRoot="false" isAbstract="false" name="get" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="642" isRoot="false" value="" type="555" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="643" isRoot="false" isAbstract="false" name="get" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="644" isRoot="false" value="" type="549" isAbstract="false" name="id" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="645" isRoot="false" isAbstract="false" name="exists" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5453" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="646" isRoot="false" value="" type="555" isAbstract="false" name="id" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="647" isRoot="false" isAbstract="false" name="exists" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5454" type="558" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="648" isRoot="false" value="" type="549" isAbstract="false" name="id" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="649" isRoot="false" isAbstract="false" name="listKeys" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5455" type="570" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="650" isRoot="false" isAbstract="false" name="KisGenericRegistry" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="652" isRoot="false" value="" type="651" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="653" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5456" type="631" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="654" isRoot="false" value="" type="651" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="633" isRoot="false" isAbstract="false" name="storageMap" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="662" isRoot="false" isAbstract="false" name=TQBYTEARRAY_OBJECT_NAME_STRING />
+ <UML:Package isSpecification="false" isLeaf="false" visibility="public" xmi.id="677" isRoot="false" isAbstract="false" name="Qt" >
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="678" isRoot="false" isAbstract="false" name="Qt::Orientation" />
+ </UML:Namespace.ownedElement>
+ </UML:Package>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="685" isRoot="false" isAbstract="false" name=TQPIXMAP_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="690" isRoot="false" isAbstract="false" name="KisGuideMgr" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="756" isRoot="false" initialValue="" type="728" isAbstract="false" name="m_size" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="757" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_vGuideLines" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="758" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_hGuideLines" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="759" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_pattern" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="760" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_vGuideLinesSelected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="761" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_hGuideLinesSelected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="762" isRoot="false" initialValue="" type="685" isAbstract="false" name="m_patternSelected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="763" isRoot="false" initialValue="" type="691" isAbstract="false" name="m_lines" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="764" isRoot="false" initialValue="" type="691" isAbstract="false" name="m_slines" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="766" isRoot="false" initialValue="" type="765" isAbstract="false" name="s_xbm" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="767" isRoot="false" initialValue="" type="765" isAbstract="false" name="s_xbm_selected" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="694" isRoot="false" isAbstract="false" name="KisGuideMgr" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="695" isRoot="false" isAbstract="false" name="~ KisGuideMgr" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="696" isRoot="false" isAbstract="false" name="add" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5457" type="430" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="697" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="698" isRoot="false" value="" type="678" isAbstract="false" name="o" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="699" isRoot="false" isAbstract="false" name="remove" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="700" isRoot="false" value="" type="430" isAbstract="false" name="gd" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="701" isRoot="false" isAbstract="false" name="tqfind" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5458" type="430" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="702" isRoot="false" value="" type="7" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="703" isRoot="false" value="" type="7" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="704" isRoot="false" value="" type="7" isAbstract="false" name="d" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="705" isRoot="false" isAbstract="false" name="findHorizontal" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5459" type="430" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="706" isRoot="false" value="" type="7" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="707" isRoot="false" value="" type="7" isAbstract="false" name="d" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="708" isRoot="false" isAbstract="false" name="findVertical" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5460" type="430" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="709" isRoot="false" value="" type="7" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="710" isRoot="false" value="" type="7" isAbstract="false" name="d" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="711" isRoot="false" isAbstract="false" name="hasSelected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5461" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="712" isRoot="false" isAbstract="false" name="selectedCount" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5462" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="713" isRoot="false" isAbstract="false" name="save" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="716" isRoot="false" value="" type="715" isAbstract="false" name="element" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="717" isRoot="false" isAbstract="false" name="load" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="719" isRoot="false" value="" type="718" isAbstract="false" name="element" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="720" isRoot="false" isAbstract="false" name="select" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="721" isRoot="false" value="" type="430" isAbstract="false" name="gd" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="722" isRoot="false" isAbstract="false" name="unselect" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="723" isRoot="false" value="" type="430" isAbstract="false" name="gd" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="724" isRoot="false" isAbstract="false" name="selectAll" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="725" isRoot="false" isAbstract="false" name="unselectAll" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="726" isRoot="false" isAbstract="false" name="removeSelected" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="727" isRoot="false" isAbstract="false" name="resize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="730" isRoot="false" value="" type="729" isAbstract="false" name="size" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="731" isRoot="false" isAbstract="false" name="resize" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="732" isRoot="false" isAbstract="false" name="erase" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="735" isRoot="false" value="" type="734" isAbstract="false" name="device" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="736" isRoot="false" value="" type="461" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="737" isRoot="false" value="" type="463" isAbstract="false" name="xOffset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="738" isRoot="false" value="" type="463" isAbstract="false" name="yOffset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="739" isRoot="false" value="" type="7" isAbstract="false" name="zoom" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="740" isRoot="false" isAbstract="false" name="paint" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="741" isRoot="false" value="" type="734" isAbstract="false" name="device" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="742" isRoot="false" value="" type="461" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="743" isRoot="false" value="" type="463" isAbstract="false" name="xOffset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="744" isRoot="false" value="" type="463" isAbstract="false" name="yOffset" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="745" isRoot="false" value="" type="7" isAbstract="false" name="zoom" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="746" isRoot="false" isAbstract="false" name="moveSelectedByX" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="747" isRoot="false" value="" type="7" isAbstract="false" name="d" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="748" isRoot="false" isAbstract="false" name="moveSelectedByY" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="749" isRoot="false" value="" type="7" isAbstract="false" name="d" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="750" isRoot="false" isAbstract="false" name="resizeLinesPixmap" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="751" isRoot="false" value="" type="729" isAbstract="false" name="size" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="753" isRoot="false" value="" type="752" isAbstract="false" name="vLine" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="754" isRoot="false" value="" type="752" isAbstract="false" name="hLine" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="755" isRoot="false" value="" type="752" isAbstract="false" name="linePattern" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="691" isRoot="false" isAbstract="false" name="vKisGuideSP" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="692" isRoot="false" isAbstract="false" name="vKisGuideSP_it" />
+ <UML:Class stereotype="362" isSpecification="false" isLeaf="false" visibility="public" xmi.id="693" isRoot="false" isAbstract="false" name="vKisGuideSP_cit" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="714" isRoot="false" isAbstract="false" name="QDomElement" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="728" isRoot="false" isAbstract="false" name="QSize" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="733" isRoot="false" isAbstract="false" name="QPaintDevice" />
+ <UML:Enumeration stereotype="302" isSpecification="false" isLeaf="false" visibility="public" xmi.id="768" isRoot="false" isAbstract="false" name="enumFilterType" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="769" isRoot="false" isAbstract="false" name="BOX_FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="770" isRoot="false" isAbstract="false" name="TRIANGLE_FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="771" isRoot="false" isAbstract="false" name="BELL_FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="772" isRoot="false" isAbstract="false" name="B_SPLINE_FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="773" isRoot="false" isAbstract="false" name="FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="774" isRoot="false" isAbstract="false" name="LANCZOS3_FILTER" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="775" isRoot="false" isAbstract="false" name="MITCHELL_FILTER" />
+ </UML:Enumeration>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="776" isRoot="false" isAbstract="false" name="KisScaleFilterStrategy" >
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="777" isRoot="false" isAbstract="false" name="KisScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="778" isRoot="false" isAbstract="false" name="~ KisScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="779" isRoot="false" isAbstract="true" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5463" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="780" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="781" isRoot="false" isAbstract="false" name="KisSimpleScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="782" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="785" isRoot="false" isAbstract="false" name="~ KisSimpleScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="786" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5464" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="787" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="788" isRoot="false" isAbstract="false" name="KisBoxScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="789" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="792" isRoot="false" isAbstract="false" name="~ KisBoxScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="793" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5465" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="794" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="795" isRoot="false" isAbstract="false" name="KisTriangleScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="796" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="799" isRoot="false" isAbstract="false" name="~ KisTriangleScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="800" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5466" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="801" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="802" isRoot="false" isAbstract="false" name="KisBellScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="803" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="806" isRoot="false" isAbstract="false" name="~ KisBellScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="807" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5467" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="808" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="809" isRoot="false" isAbstract="false" name="KisBSplineScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="810" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="813" isRoot="false" isAbstract="false" name="~ KisBSplineScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="814" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5468" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="815" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="816" isRoot="false" isAbstract="false" name="KisLanczos3ScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="817" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="820" isRoot="false" isAbstract="false" name="~ KisLanczos3ScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="821" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5469" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="822" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="823" isRoot="false" isAbstract="false" name="sinc" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5470" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="824" isRoot="false" value="" type="7" isAbstract="false" name="x" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="825" isRoot="false" isAbstract="false" name="KisMitchellScaleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="826" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="829" isRoot="false" isAbstract="false" name="~ KisMitchellScaleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="830" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5471" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="831" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="832" isRoot="false" isAbstract="false" name="KisScaleVisitor" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="834" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="854" isRoot="false" initialValue="" type="847" isAbstract="false" name="m_dev" />
+ <UML:Attribute comment="//array of contribution lists" isSpecification="false" isLeaf="false" visibility="private" xmi.id="865" isRoot="false" initialValue="" type="856" isAbstract="false" name="contrib" />
+ <UML:Attribute comment="// Implement KisProgressSubject" isSpecification="false" isLeaf="false" visibility="private" xmi.id="866" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_cancelRequested" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="844" isRoot="false" isAbstract="false" name="KisScaleVisitor" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="845" isRoot="false" isAbstract="false" name="~ KisScaleVisitor" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="846" isRoot="false" isAbstract="false" name="visitKisPaintDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="848" isRoot="false" value="" type="847" isAbstract="false" name="dev" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="849" isRoot="false" isAbstract="false" name="scale" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="850" isRoot="false" value="" type="7" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="851" isRoot="false" value="" type="7" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="852" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="853" isRoot="false" value="" type="768" isAbstract="false" name="filterType" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="calc_x_contrib()
+
+Calculates the filter weights for a single target column.
+contribX->p must be freed afterwards.
+
+Returns -1 if error, 0 otherwise." isSpecification="false" isLeaf="false" visibility="private" xmi.id="855" isRoot="false" isAbstract="false" name="calc_x_contrib" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5472" type="2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="857" isRoot="false" value="" type="856" isAbstract="false" name="contribX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="858" isRoot="false" value="" type="7" isAbstract="false" name="xcale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="859" isRoot="false" value="" type="7" isAbstract="false" name="fwidth" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="860" isRoot="false" value="" type="2" isAbstract="false" name="dstwidth" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="861" isRoot="false" value="" type="2" isAbstract="false" name="srcwidth" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="863" isRoot="false" value="" type="862" isAbstract="false" name="filterStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="864" isRoot="false" value="" type="463" isAbstract="false" name="i" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="867" isRoot="false" isAbstract="false" name="cancel" />
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class comment="Structs for the image rescaling routine" isSpecification="false" isLeaf="false" visibility="public" xmi.id="837" isRoot="false" isAbstract="false" name="CONTRIB" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="838" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_pixel" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="839" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_weight" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="840" isRoot="false" isAbstract="false" name="CLIST" >
+ <UML:Classifier.feature>
+ <UML:Attribute comment="//number of contributors" isSpecification="false" isLeaf="false" visibility="public" xmi.id="841" isRoot="false" initialValue="" type="463" isAbstract="false" name="n" />
+ <UML:Attribute comment="//pointer to list of contributions" isSpecification="false" isLeaf="false" visibility="public" xmi.id="843" isRoot="false" initialValue="" type="842" isAbstract="false" name="p" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="833" isRoot="false" isAbstract="false" name="KisProgressSubject" />
+ <UML:Class comment=" Copyright (c) 2003 Patrick Julien &lt;freak@codepimps.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+The KisResource class provides a representation of Chalk image resources. This
+includes, but not limited to, brushes and patterns.
+
+This replaces the KisKrayon facility that used to be present in Krayon." isSpecification="false" isLeaf="false" visibility="public" xmi.id="868" isRoot="false" isAbstract="false" name="KisResource" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="870" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="911" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_name" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="912" isRoot="false" initialValue="" type="548" isAbstract="false" name="m_filename" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="913" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_dirty" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="914" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_valid" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="915" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_width" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="916" isRoot="false" initialValue="" type="463" isAbstract="false" name="m_height" />
+ <UML:Operation comment="Creates a new KisResource object using @p filename. No file is opened
+in the constructor, you have to call loadAsync.
+
+@param filename the file name to save and load from." isSpecification="false" isLeaf="false" visibility="public" xmi.id="873" isRoot="false" isAbstract="false" name="KisResource" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="874" isRoot="false" value="" type="549" isAbstract="false" name="filename" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="875" isRoot="false" isAbstract="false" name="~ KisResource" />
+ <UML:Operation comment="Load this resource asynchronously. The signal loadComplete is emitted when
+the resource has been loaded and valid flag is set to true." isSpecification="false" isLeaf="false" visibility="public" xmi.id="876" isRoot="false" isAbstract="true" name="loadAsync" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5473" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Save this resource asynchronously. The signal saveComplete is emitted when
+the resource has been saved." isSpecification="false" isLeaf="false" visibility="public" xmi.id="877" isRoot="false" isAbstract="true" name="saveAsync" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5474" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Returns a QImage representing this resource. This image could be null." isSpecification="false" isLeaf="false" visibility="public" xmi.id="878" isRoot="false" isAbstract="true" name="img" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5475" type="879" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="880" isRoot="false" isAbstract="false" name="dirty" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5476" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="881" isRoot="false" isAbstract="false" name="setDirty" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="882" isRoot="false" value="" type="558" isAbstract="false" name="dirt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="883" isRoot="false" isAbstract="false" name="filename" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5477" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="884" isRoot="false" isAbstract="false" name="setFilename" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="885" isRoot="false" value="" type="549" isAbstract="false" name="filename" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="886" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5478" type="548" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="887" isRoot="false" isAbstract="false" name="setName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="888" isRoot="false" value="" type="549" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="889" isRoot="false" isAbstract="false" name="valid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5479" type="558" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="890" isRoot="false" isAbstract="false" name="setValid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="891" isRoot="false" value="" type="558" isAbstract="false" name="valid" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="892" isRoot="false" isAbstract="false" name="width" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5480" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="893" isRoot="false" isAbstract="false" name="height" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5481" type="463" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="894" isRoot="false" isAbstract="false" name="setWidth" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="895" isRoot="false" value="" type="463" isAbstract="false" name="w" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="896" isRoot="false" isAbstract="false" name="setHeight" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="897" isRoot="false" value="" type="463" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="898" isRoot="false" isAbstract="false" name="loadComplete" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="900" isRoot="false" value="" type="899" isAbstract="false" name="me" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="901" isRoot="false" isAbstract="false" name="saveComplete" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="902" isRoot="false" value="" type="899" isAbstract="false" name="me" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="903" isRoot="false" isAbstract="false" name="ioFailed" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="904" isRoot="false" value="" type="899" isAbstract="false" name="me" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="905" isRoot="false" isAbstract="false" name="KisResource" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="907" isRoot="false" value="" type="906" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="908" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5482" type="910" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="909" isRoot="false" value="" type="906" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="869" isRoot="false" isAbstract="false" name=TQOBJECT_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="879" isRoot="false" isAbstract="false" name="QImage" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="924" isRoot="false" isAbstract="false" name="Q_UINT32" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="930" isRoot="false" isAbstract="false" name="cmsHPROFILE" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="939" isRoot="false" isAbstract="false" name="icColorSpaceSignature" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="941" isRoot="false" isAbstract="false" name="icProfileClassSignature" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="957" isRoot="false" isAbstract="false" name="KoCommandHistory" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="958" isRoot="false" isAbstract="false" name="KisNameServer" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="959" isRoot="false" isAbstract="false" name="KisPainter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="960" isRoot="false" isAbstract="false" name="DCOPObject" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="989" isRoot="false" isAbstract="false" name="QPainter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1032" isRoot="false" isAbstract="false" name="KURL" />
+ <UML:Package isSpecification="false" isLeaf="false" visibility="public" xmi.id="1037" isRoot="false" isAbstract="false" name="KoUnit" >
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1038" isRoot="false" isAbstract="false" name="Unit" />
+ </UML:Namespace.ownedElement>
+ </UML:Package>
+ <UML:Class comment=" Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//** This class is meant to be used inside KisQuantum" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1160" isRoot="false" isAbstract="false" name="KisQuantumOperation" >
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1161" isRoot="false" isAbstract="false" name="KisQuantumOperation" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1162" isRoot="false" isAbstract="true" name="operation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5483" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1164" isRoot="false" value="" type="1163" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function is called to clone this object.
+@param index this is the offset" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1165" isRoot="false" isAbstract="true" name="clone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5484" type="1167" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1166" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1163" isRoot="false" isAbstract="false" name="QUANTUM" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1168" isRoot="false" isAbstract="false" name="KisQuantumOperationLinear" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1169" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1172" isRoot="false" isAbstract="false" name="KisQuantumOperationLinear" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1173" isRoot="false" isAbstract="false" name="operation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5485" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1174" isRoot="false" value="" type="1163" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1175" isRoot="false" isAbstract="false" name="clone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5486" type="1167" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1176" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1177" isRoot="false" isAbstract="false" name="KisQuantumOperationMasked" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1178" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1181" isRoot="false" isAbstract="false" name="KisQuantumOperationMasked" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1182" isRoot="false" isAbstract="false" name="operation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5487" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1183" isRoot="false" value="" type="1163" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1184" isRoot="false" isAbstract="false" name="clone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5488" type="1167" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1185" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment=" Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+An editable wrapper around the byte values for a single colour channel." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1186" isRoot="false" isAbstract="false" name="KisQuantum" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1200" isRoot="false" initialValue="" type="1188" isAbstract="false" name="m_quantum" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1201" isRoot="false" initialValue="" type="1167" isAbstract="false" name="m_op" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1187" isRoot="false" isAbstract="false" name="KisQuantum" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1189" isRoot="false" value="" type="1188" isAbstract="false" name="q" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1190" isRoot="false" value="" type="1167" isAbstract="false" name="op" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1191" isRoot="false" isAbstract="false" name="operator QUANTUM" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1192" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5489" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1193" isRoot="false" value="" type="1163" isAbstract="false" name="q" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1194" isRoot="false" isAbstract="false" name="operator -=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5490" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1195" isRoot="false" value="" type="1163" isAbstract="false" name="q" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1196" isRoot="false" isAbstract="false" name="operator +=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5491" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1197" isRoot="false" value="" type="1163" isAbstract="false" name="q" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1198" isRoot="false" isAbstract="false" name="operator [ ]" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5492" type="1186" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1199" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="// XXX: Template these classes to byte, int, float, double// XXX: Separate color channels from substance channels (wetness, thickness, grainyness) on construction/**
+KisPixel and KisPixelRO are the primary classes to access individual pixel data.
+A pixel consists of channels of a certain size. At the moment, all channels must
+be of the same size, and that size is one byte, or QUANTUM. In the future
+pixels with heteregenous channels and larger (or smaller?) channels will be
+possible, too.
+
+The [] operator returns the channel at that index. You can discover the number
+of channels and the names of the channels by querying the color strategy.
+All channels can be accessed using this method.
+
+There are three types of channels: color, alpha and substance.
+
+Generally, in filters and suchlike code, you can treat all color channels the same,
+and have a different algorithm for alpha. Substance is a future extension, usable
+for wetness, grainyness or thickness.
+
+The color channels come first -- this is useful if you want to loop over
+these channels (for int i = 0; i &lt; colorspace -> nColorChannels(); ++i) { hack(pixel[i]); }.
+
+The next index after the colour channels points to the alpha channel. A pointer to
+the value of the alpha channel can also be retrieved with alpha(). Always
+check whether there is actually an alpha channel, otherwise alpha() will
+return the first channel of the next pixel, most probably, or perhaps even
+something worse.
+
+After alpha, the substance channels will come.
+
+Note: once you start working with color management a sequence of bytes that happens to
+encode R, G and B values is still meaningless. You cannot know what _color_ the bytes
+represent unless you also have a profile. So KisPixel must know about the profile, too.
+//**
+A read-only pixel. You can retrieve the channel values by name or position
+or all channels as a value vector." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1202" isRoot="false" isAbstract="false" name="KisPixelRO" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1220" isRoot="false" initialValue="" type="1204" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1221" isRoot="false" initialValue="" type="1204" isAbstract="false" name="m_alpha" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1222" isRoot="false" initialValue="" type="1163" isAbstract="false" name="m_selected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1223" isRoot="false" initialValue="" type="427" isAbstract="false" name="m_colorStrategy" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1224" isRoot="false" initialValue="" type="438" isAbstract="false" name="m_profile" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1203" isRoot="false" isAbstract="false" name="KisPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1205" isRoot="false" value="" type="1204" isAbstract="false" name="channels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1206" isRoot="false" value="" type="1204" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1207" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1208" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1209" isRoot="false" isAbstract="false" name="~ KisPixelRO" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1210" isRoot="false" isAbstract="false" name="operator [ ]" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5493" type="1163" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1211" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1212" isRoot="false" isAbstract="false" name="alpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5494" type="1163" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1213" isRoot="false" isAbstract="false" name="selected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5495" type="1163" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1214" isRoot="false" isAbstract="false" name="setSelected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1215" isRoot="false" value="" type="1163" isAbstract="false" name="selected" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1216" isRoot="false" isAbstract="false" name="colorStrategy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5496" type="427" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1217" isRoot="false" isAbstract="false" name="setProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1218" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1219" isRoot="false" isAbstract="false" name="profile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5497" type="438" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="A read-write pixel. You can retrieve the channel values by name or position
+or all channels as a pointer vector.
+
+The alpha channel is separately available." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1225" isRoot="false" isAbstract="false" name="KisPixel" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1248" isRoot="false" initialValue="" type="1188" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1249" isRoot="false" initialValue="" type="1188" isAbstract="false" name="m_alpha" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1250" isRoot="false" initialValue="" type="1163" isAbstract="false" name="m_selected" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1251" isRoot="false" initialValue="" type="427" isAbstract="false" name="m_colorStrategy" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1252" isRoot="false" initialValue="" type="438" isAbstract="false" name="m_profile" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1226" isRoot="false" isAbstract="false" name="KisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1227" isRoot="false" value="" type="2" isAbstract="false" name="nbChannels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1228" isRoot="false" value="" type="2" isAbstract="false" name="nbAlphaChannels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1229" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1230" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1231" isRoot="false" isAbstract="false" name="KisPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1232" isRoot="false" value="" type="1188" isAbstract="false" name="channels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1233" isRoot="false" value="" type="1188" isAbstract="false" name="alpha" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1234" isRoot="false" value="" type="427" isAbstract="false" name="colorStrategy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1235" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1236" isRoot="false" isAbstract="false" name="~ KisPixel" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1237" isRoot="false" isAbstract="false" name="operator [ ]" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5498" type="1186" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1238" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1239" isRoot="false" isAbstract="false" name="alpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5499" type="1186" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1240" isRoot="false" isAbstract="false" name="selected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5500" type="1163" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1241" isRoot="false" isAbstract="false" name="setSelected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1242" isRoot="false" value="" type="1163" isAbstract="false" name="selected" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1243" isRoot="false" isAbstract="false" name="colorStrategy" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5501" type="427" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1244" isRoot="false" isAbstract="false" name="setProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1245" isRoot="false" value="" type="438" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1246" isRoot="false" isAbstract="false" name="profile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5502" type="438" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1247" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5503" type="1188" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="enum enumFilterType {
+BOX_FILTER,
+TRIANGLE_FILTER,
+BELL_FILTER,
+B_SPLINE_FILTER,
+FILTER,
+LANCZOS3_FILTER,
+MITCHELL_FILTER
+};" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1253" isRoot="false" isAbstract="false" name="KisFilterStrategy" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1259" isRoot="false" initialValue="" type="7" isAbstract="false" name="supportVal" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1254" isRoot="false" isAbstract="false" name="KisFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1255" isRoot="false" isAbstract="false" name="~ KisFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1256" isRoot="false" isAbstract="true" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5504" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1257" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1258" isRoot="false" isAbstract="false" name="support" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5505" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1260" isRoot="false" isAbstract="false" name="KisSimpleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1261" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1264" isRoot="false" isAbstract="false" name="KisSimpleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1265" isRoot="false" isAbstract="false" name="~ KisSimpleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1266" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5506" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1267" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1268" isRoot="false" isAbstract="false" name="KisBoxFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1269" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1272" isRoot="false" isAbstract="false" name="KisBoxFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1273" isRoot="false" isAbstract="false" name="~ KisBoxFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1274" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5507" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1275" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1276" isRoot="false" isAbstract="false" name="KisTriangleFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1277" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1280" isRoot="false" isAbstract="false" name="KisTriangleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1281" isRoot="false" isAbstract="false" name="~ KisTriangleFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1282" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5508" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1283" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1284" isRoot="false" isAbstract="false" name="KisBellFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1285" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1288" isRoot="false" isAbstract="false" name="KisBellFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1289" isRoot="false" isAbstract="false" name="~ KisBellFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1290" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5509" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1291" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1292" isRoot="false" isAbstract="false" name="KisBSplineFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1293" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1296" isRoot="false" isAbstract="false" name="KisBSplineFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1297" isRoot="false" isAbstract="false" name="~ KisBSplineFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1298" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5510" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1299" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1300" isRoot="false" isAbstract="false" name="KisLanczos3FilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1301" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1304" isRoot="false" isAbstract="false" name="KisLanczos3FilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1305" isRoot="false" isAbstract="false" name="~ KisLanczos3FilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1306" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5511" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1307" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1308" isRoot="false" isAbstract="false" name="sinc" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5512" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1309" isRoot="false" value="" type="7" isAbstract="false" name="x" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1310" isRoot="false" isAbstract="false" name="KisMitchellFilterStrategy" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1311" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1314" isRoot="false" isAbstract="false" name="KisMitchellFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1315" isRoot="false" isAbstract="false" name="~ KisMitchellFilterStrategy" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1316" isRoot="false" isAbstract="false" name="valueAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="5513" type="7" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1317" isRoot="false" value="" type="7" isAbstract="false" name="t" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1318" isRoot="false" isAbstract="false" name="KisTransformVisitor" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1319" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1344" isRoot="false" initialValue="" type="847" isAbstract="false" name="m_dev" />
+ <UML:Attribute comment="// Implement KisProgressSubject" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1345" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_cancelRequested" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1322" isRoot="false" isAbstract="false" name="KisTransformVisitor" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1323" isRoot="false" isAbstract="false" name="~ KisTransformVisitor" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1324" isRoot="false" isAbstract="false" name="visitKisPaintDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1325" isRoot="false" value="" type="847" isAbstract="false" name="dev" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1326" isRoot="false" isAbstract="false" name="transformx" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1327" isRoot="false" value="" type="463" isAbstract="false" name="scale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1328" isRoot="false" value="" type="463" isAbstract="false" name="scaleDenom" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1329" isRoot="false" value="" type="463" isAbstract="false" name="shear" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1330" isRoot="false" value="" type="463" isAbstract="false" name="dx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1331" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1333" isRoot="false" value="" type="1332" isAbstract="false" name="filterStrategy" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1334" isRoot="false" isAbstract="false" name="transform" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1335" isRoot="false" value="" type="463" isAbstract="false" name="xscale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1336" isRoot="false" value="" type="463" isAbstract="false" name="yscale" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1337" isRoot="false" value="" type="463" isAbstract="false" name="xshear" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1338" isRoot="false" value="" type="463" isAbstract="false" name="yshear" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1339" isRoot="false" value="" type="463" isAbstract="false" name="denominator" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1340" isRoot="false" value="" type="463" isAbstract="false" name="xtranslate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1341" isRoot="false" value="" type="463" isAbstract="false" name="ytranslate" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1342" isRoot="false" value="" type="614" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1343" isRoot="false" value="" type="768" isAbstract="false" name="filterType" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1346" isRoot="false" isAbstract="false" name="cancel" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1347" isRoot="false" isAbstract="false" name="KoStore" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1348" isRoot="false" isAbstract="false" name="KisTiledDataManager" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1358" isRoot="false" isAbstract="false" name="KisMemento" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1388" isRoot="false" isAbstract="false" name="Q_UINT8" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1424" isRoot="false" isAbstract="false" name="KisRectIterator" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1425" isRoot="false" isAbstract="false" name="KisHLineIterator" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1426" isRoot="false" isAbstract="false" name="KisVLineIterator" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1427" isRoot="false" isAbstract="false" name="QWMatrix" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1428" isRoot="false" isAbstract="false" name="KisRotateVisitor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1429" isRoot="false" isAbstract="false" name="KisRectIteratorPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1430" isRoot="false" isAbstract="false" name="KisVLineIteratorPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1431" isRoot="false" isAbstract="false" name="KisHLineIteratorPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1432" isRoot="false" isAbstract="false" name="KNamedCommand" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1618" isRoot="false" isAbstract="false" name="Q_INT8" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1674" isRoot="false" isAbstract="false" name="KAction" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1675" isRoot="false" isAbstract="false" name="KisView" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1676" isRoot="false" isAbstract="false" name="KisDockFrameDocker" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1677" isRoot="false" isAbstract="false" name="KoTabbedToolDock" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1678" isRoot="false" isAbstract="false" name="KoToolDockManager" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1679" isRoot="false" isAbstract="false" name="KActionCollection" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1680" isRoot="false" isAbstract="false" name="KisPaintBox" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1681" isRoot="false" isAbstract="false" name="KisLayerBox" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1682" isRoot="false" isAbstract="false" name="KisFilterBox" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1683" isRoot="false" isAbstract="false" name="ControlFrame" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1684" isRoot="false" isAbstract="false" name="KisBirdEyeBox" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1685" isRoot="false" isAbstract="false" name="KisChannelView" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1686" isRoot="false" isAbstract="false" name="KisAutobrush" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1687" isRoot="false" isAbstract="false" name="KisTextBrush" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1688" isRoot="false" isAbstract="false" name="KisAutogradient" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1689" isRoot="false" isAbstract="false" name="KisHSVWidget" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1690" isRoot="false" isAbstract="false" name="KisRGBWidget" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1691" isRoot="false" isAbstract="false" name="KisGrayWidget" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1692" isRoot="false" isAbstract="false" name="KisPaletteWidget" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1693" isRoot="false" isAbstract="false" name="KisResourceMediator" />
+ <UML:Class comment="The docker manager keeps track of dockers and their tabs.
+
+There are three kinds of dockers: sliding dockers, shading
+dockers and toolboxes.
+
+Tabs are created by calling addDockerTab with a widget (the tab)
+and a KisID (a combination of language-independent identifying
+string and a caption). If there is already a docker with the
+identifying string, then the tab is added to that docker,
+otherwise a new docker is created.
+
+On application shutdown, the configuration is saved. Next time
+on startup, if a tab is added, we first look in the saved configuation,
+and if a tab and docker is present with the specified identifying
+string, then we restore that tab in that place, otherwise in the
+specified place.
+
+XXX: for post 1.4: make sure we can drag &amp; drop widgets." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1694" isRoot="false" isAbstract="false" name="KisDockerManager" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1695" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1718" isRoot="false" initialValue="" type="1717" isAbstract="false" name="m_tabs" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1720" isRoot="false" initialValue="" type="1719" isAbstract="false" name="m_dockWindows" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1722" isRoot="false" initialValue="" type="1721" isAbstract="false" name="m_toolBoxes" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1724" isRoot="false" initialValue="" type="1723" isAbstract="false" name="m_sliders" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1725" isRoot="false" initialValue="" type="1699" isAbstract="false" name="m_view" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1726" isRoot="false" initialValue="" type="1701" isAbstract="false" name="m_ac" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1751" isRoot="false" initialValue="" type="1750" isAbstract="false" name="m_toolDockManager" />
+ <UML:Attribute comment="// Sliders" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1753" isRoot="false" initialValue="" type="1752" isAbstract="false" name="m_layerchannelslider" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1754" isRoot="false" initialValue="" type="1752" isAbstract="false" name="m_tqshapesslider" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1755" isRoot="false" initialValue="" type="1752" isAbstract="false" name="m_fillsslider" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1756" isRoot="false" initialValue="" type="1752" isAbstract="false" name="m_toolcontrolslider" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1757" isRoot="false" initialValue="" type="1752" isAbstract="false" name="m_colorslider" />
+ <UML:Attribute comment="// Dockers" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1759" isRoot="false" initialValue="" type="1758" isAbstract="false" name="m_layerchanneldocker" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1760" isRoot="false" initialValue="" type="1758" isAbstract="false" name="m_tqshapesdocker" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1761" isRoot="false" initialValue="" type="1758" isAbstract="false" name="m_fillsdocker" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1762" isRoot="false" initialValue="" type="1758" isAbstract="false" name="m_toolcontroldocker" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1763" isRoot="false" initialValue="" type="1758" isAbstract="false" name="m_colordocker" />
+ <UML:Attribute comment="// Toolbox" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1765" isRoot="false" initialValue="" type="1764" isAbstract="false" name="m_paintboxdocker" />
+ <UML:Attribute comment="// Widgets" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1767" isRoot="false" initialValue="" type="1766" isAbstract="false" name="m_layerBox" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1768" isRoot="false" initialValue="" type="1764" isAbstract="false" name="m_paintBox" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1770" isRoot="false" initialValue="" type="1769" isAbstract="false" name="m_filterBox" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1772" isRoot="false" initialValue="" type="1771" isAbstract="false" name="m_controlWidget" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1774" isRoot="false" initialValue="" type="1773" isAbstract="false" name="m_birdEyeBox" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1776" isRoot="false" initialValue="" type="1775" isAbstract="false" name="m_channelView" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1778" isRoot="false" initialValue="" type="1777" isAbstract="false" name="m_autobrush" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1780" isRoot="false" initialValue="" type="1779" isAbstract="false" name="m_textBrush" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1782" isRoot="false" initialValue="" type="1781" isAbstract="false" name="m_autogradient" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1784" isRoot="false" initialValue="" type="1783" isAbstract="false" name="m_hsvwidget" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1786" isRoot="false" initialValue="" type="1785" isAbstract="false" name="m_rgbwidget" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1788" isRoot="false" initialValue="" type="1787" isAbstract="false" name="m_graywidget" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1790" isRoot="false" initialValue="" type="1789" isAbstract="false" name="m_palettewidget" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1792" isRoot="false" initialValue="" type="1791" isAbstract="false" name="m_brushMediator" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1793" isRoot="false" initialValue="" type="1791" isAbstract="false" name="m_patternMediator" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1794" isRoot="false" initialValue="" type="1791" isAbstract="false" name="m_gradientMediator" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1795" isRoot="false" initialValue="" type="558" isAbstract="false" name="m_slidersSetup" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1698" isRoot="false" isAbstract="false" name="KisDockerManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1700" isRoot="false" value="" type="1699" isAbstract="false" name="view" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1702" isRoot="false" value="" type="1701" isAbstract="false" name="ac" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1703" isRoot="false" isAbstract="false" name="~ KisDockerManager" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1704" isRoot="false" isAbstract="false" name="addDockerTab" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1705" isRoot="false" value="" type="461" isAbstract="false" name="tab" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1706" isRoot="false" value="" type="555" isAbstract="false" name="docker" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1707" isRoot="false" value="" type="307" isAbstract="false" name="docktype" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1708" isRoot="false" isAbstract="false" name="setToolOptionWidget" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1710" isRoot="false" value="" type="1709" isAbstract="false" name="oldTool" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1711" isRoot="false" value="" type="1709" isAbstract="false" name="newTool" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1712" isRoot="false" isAbstract="false" name="unsetToolOptionWidget" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1713" isRoot="false" value="" type="1709" isAbstract="false" name="oldTool" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1714" isRoot="false" isAbstract="false" name="resetLayerBox" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1715" isRoot="false" value="" type="384" isAbstract="false" name="img" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1716" isRoot="false" value="" type="394" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1727" isRoot="false" isAbstract="false" name="setupDockers" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1728" isRoot="false" isAbstract="false" name="slotBrushChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1729" isRoot="false" value="" type="599" isAbstract="false" name="brush" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1730" isRoot="false" isAbstract="false" name="slotGradientChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1731" isRoot="false" value="" type="603" isAbstract="false" name="gradient" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1732" isRoot="false" isAbstract="false" name="slotPatternChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1733" isRoot="false" value="" type="601" isAbstract="false" name="pattern" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1734" isRoot="false" isAbstract="false" name="viewColorSlider" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1735" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1736" isRoot="false" isAbstract="false" name="viewControlSlider" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1737" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1738" isRoot="false" isAbstract="false" name="viewLayerChannelSlider" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1739" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1740" isRoot="false" isAbstract="false" name="viewShapesSlider" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1741" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1742" isRoot="false" isAbstract="false" name="viewFillsSlider" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1743" isRoot="false" value="" type="558" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1744" isRoot="false" isAbstract="false" name="viewColorDocker" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1745" isRoot="false" isAbstract="false" name="viewControlDocker" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1746" isRoot="false" isAbstract="false" name="viewLayerChannelDocker" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1747" isRoot="false" isAbstract="false" name="viewShapesDocker" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1748" isRoot="false" isAbstract="false" name="viewFillsDocker" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1749" isRoot="false" isAbstract="false" name="viewPaintBoxDocker" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1796" isRoot="false" isAbstract="false" name="KisDoc" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1797" isRoot="false" isAbstract="false" name="KisClipboard" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1858" isRoot="false" isAbstract="false" name="QPtrList" />
+ <UML:Generalization isSpecification="false" child="363" visibility="public" xmi.id="366" tqparent="365" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="541" visibility="public" xmi.id="543" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="445" visibility="public" xmi.id="656" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="429" visibility="public" xmi.id="673" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="781" visibility="public" xmi.id="782" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="788" visibility="public" xmi.id="789" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="795" visibility="public" xmi.id="796" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="802" visibility="public" xmi.id="803" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="809" visibility="public" xmi.id="810" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="816" visibility="public" xmi.id="817" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="825" visibility="public" xmi.id="826" tqparent="776" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="832" visibility="public" xmi.id="834" tqparent="833" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="868" visibility="public" xmi.id="870" tqparent="869" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="437" visibility="public" xmi.id="917" tqparent="868" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="437" visibility="public" xmi.id="920" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="383" visibility="public" xmi.id="961" tqparent="869" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="383" visibility="public" xmi.id="964" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1168" visibility="public" xmi.id="1169" tqparent="1160" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1177" visibility="public" xmi.id="1178" tqparent="1160" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1260" visibility="public" xmi.id="1261" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1268" visibility="public" xmi.id="1269" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1276" visibility="public" xmi.id="1277" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1284" visibility="public" xmi.id="1285" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1292" visibility="public" xmi.id="1293" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1300" visibility="public" xmi.id="1301" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1310" visibility="public" xmi.id="1311" tqparent="1253" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1318" visibility="public" xmi.id="1319" tqparent="833" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="423" visibility="public" xmi.id="1349" tqparent="1348" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="388" visibility="public" xmi.id="1433" tqparent="869" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="388" visibility="public" xmi.id="1436" tqparent="542" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="398" visibility="public" xmi.id="1649" tqparent="388" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="1694" visibility="public" xmi.id="1695" tqparent="869" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="577" visibility="public" xmi.id="1798" tqparent="869" discriminator="" name="" />
+ </UML:Namespace.ownedElement>
+ </UML:Model>
+ </XMI.content>
+ <XMI.extensions xmi.extender="umbrello" >
+ <docsettings viewid="1" documentation="" uniqueid="5513" />
+ <diagrams>
+ <diagram snapgrid="1" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="64" showgrid="1" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="1748" snapy="10" showatts="1" xmi.id="1" documentation="" type="402" showops="1" showpackage="0" name="class diagram" localid="900000" showstereotype="0" showscope="1" snapcsgrid="0" font="Bitstream Vera Sans,11,-1,5,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="1613" >
+ <widgets>
+ <interfacewidget usesdiagramfillcolour="1" width="824" usesdiagramusefillcolour="1" x="98" linecolour="none" y="660" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="660" usefillcolor="1" isinstance="0" xmi.id="11" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="0" width="584" usesdiagramusefillcolour="0" x="70" linecolour="#ff0000" y="98" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="0" fillcolour="#ffffc0" height="242" usefillcolor="1" isinstance="0" xmi.id="13" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="1" width="310" usesdiagramusefillcolour="1" x="715" linecolour="none" y="223" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="55" usefillcolor="1" isinstance="0" xmi.id="14" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="1" width="273" usesdiagramusefillcolour="1" x="714" linecolour="none" y="283" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="55" usefillcolor="1" isinstance="0" xmi.id="15" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="1" width="279" usesdiagramusefillcolour="1" x="711" linecolour="none" y="353" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="55" usefillcolor="1" isinstance="0" xmi.id="16" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="1" width="287" usesdiagramusefillcolour="1" x="717" linecolour="none" y="413" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="55" usefillcolor="1" isinstance="0" xmi.id="17" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <interfacewidget usesdiagramfillcolour="1" width="262" usesdiagramusefillcolour="1" x="709" linecolour="none" y="544" drawascircle="0" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="55" usefillcolor="1" isinstance="0" xmi.id="18" showoperations="1" showpackage="0" showscope="1" font="Bitstream Vera Sans,11,-1,5,75,1,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="604" showattsigs="601" usesdiagramusefillcolour="1" x="978" linecolour="none" y="677" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="627" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="528" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,11,-1,5,75,0,0,0,0,0" />
+ </widgets>
+ <messages/>
+ <associations/>
+ </diagram>
+ </diagrams>
+ <listview>
+ <listitem open="1" type="800" label="Views" >
+ <listitem open="1" type="801" label="Logical View" >
+ <listitem open="0" type="813" id="1683" />
+ <listitem open="0" type="813" id="960" />
+ <listitem open="0" type="813" id="1674" />
+ <listitem open="0" type="813" id="1679" />
+ <listitem open="0" type="813" id="1432" />
+ <listitem open="0" type="813" id="542" />
+ <listitem open="0" type="813" id="1032" />
+ <listitem open="0" type="813" id="431" />
+ <listitem open="0" type="813" id="432" />
+ <listitem open="0" type="813" id="445" >
+ <listitem open="0" type="814" id="670" />
+ <listitem open="0" type="814" id="671" />
+ <listitem open="0" type="814" id="672" />
+ <listitem open="0" type="815" id="659" />
+ <listitem open="0" type="815" id="665" />
+ <listitem open="0" type="815" id="667" />
+ <listitem open="0" type="815" id="668" />
+ </listitem>
+ <listitem open="0" type="813" id="446" />
+ <listitem open="0" type="813" id="1686" />
+ <listitem open="0" type="813" id="1688" />
+ <listitem open="0" type="813" id="1292" >
+ <listitem open="0" type="815" id="1296" />
+ <listitem open="0" type="815" id="1297" />
+ <listitem open="0" type="815" id="1298" />
+ </listitem>
+ <listitem open="0" type="813" id="809" >
+ <listitem open="0" type="815" id="813" />
+ <listitem open="0" type="815" id="814" />
+ </listitem>
+ <listitem open="0" type="813" id="403" />
+ <listitem open="0" type="813" id="404" />
+ <listitem open="0" type="813" id="1284" >
+ <listitem open="0" type="815" id="1288" />
+ <listitem open="0" type="815" id="1289" />
+ <listitem open="0" type="815" id="1290" />
+ </listitem>
+ <listitem open="0" type="813" id="802" >
+ <listitem open="0" type="815" id="806" />
+ <listitem open="0" type="815" id="807" />
+ </listitem>
+ <listitem open="0" type="813" id="1684" />
+ <listitem open="0" type="813" id="1268" >
+ <listitem open="0" type="815" id="1272" />
+ <listitem open="0" type="815" id="1273" />
+ <listitem open="0" type="815" id="1274" />
+ </listitem>
+ <listitem open="0" type="813" id="788" >
+ <listitem open="0" type="815" id="792" />
+ <listitem open="0" type="815" id="793" />
+ </listitem>
+ <listitem open="0" type="813" id="572" />
+ <listitem open="0" type="813" id="529" >
+ <listitem open="0" type="815" id="530" />
+ <listitem open="0" type="815" id="531" />
+ <listitem open="0" type="815" id="532" />
+ <listitem open="0" type="815" id="535" />
+ <listitem open="0" type="815" id="538" />
+ </listitem>
+ <listitem open="0" type="813" id="528" >
+ <listitem open="0" type="815" id="580" />
+ <listitem open="0" type="815" id="581" />
+ <listitem open="0" type="815" id="582" />
+ <listitem open="0" type="815" id="585" />
+ <listitem open="0" type="815" id="587" />
+ <listitem open="0" type="815" id="588" />
+ <listitem open="0" type="815" id="589" />
+ <listitem open="0" type="815" id="590" />
+ <listitem open="0" type="815" id="592" />
+ <listitem open="0" type="815" id="595" />
+ <listitem open="0" type="815" id="596" />
+ <listitem open="0" type="815" id="598" />
+ <listitem open="0" type="815" id="600" />
+ <listitem open="0" type="815" id="602" />
+ <listitem open="0" type="815" id="604" />
+ <listitem open="0" type="815" id="605" />
+ <listitem open="0" type="815" id="607" />
+ <listitem open="0" type="815" id="609" />
+ <listitem open="0" type="815" id="611" />
+ <listitem open="0" type="815" id="613" />
+ <listitem open="0" type="815" id="615" />
+ <listitem open="0" type="815" id="617" />
+ <listitem open="0" type="815" id="619" />
+ <listitem open="0" type="815" id="621" />
+ <listitem open="0" type="815" id="622" />
+ <listitem open="0" type="815" id="625" />
+ <listitem open="0" type="815" id="628" />
+ </listitem>
+ <listitem open="0" type="813" id="440" />
+ <listitem open="0" type="813" id="441" />
+ <listitem open="0" type="813" id="1685" />
+ <listitem open="0" type="813" id="1797" />
+ <listitem open="0" type="813" id="433" />
+ <listitem open="0" type="813" id="434" />
+ <listitem open="0" type="813" id="423" >
+ <listitem open="0" type="815" id="1352" />
+ <listitem open="0" type="815" id="1354" />
+ <listitem open="0" type="815" id="1357" />
+ <listitem open="0" type="815" id="1360" />
+ <listitem open="0" type="815" id="1362" />
+ <listitem open="0" type="815" id="1364" />
+ <listitem open="0" type="815" id="1367" />
+ <listitem open="0" type="815" id="1369" />
+ <listitem open="0" type="815" id="1370" />
+ <listitem open="0" type="815" id="1376" />
+ <listitem open="0" type="815" id="1381" />
+ <listitem open="0" type="815" id="1383" />
+ <listitem open="0" type="815" id="1390" />
+ <listitem open="0" type="815" id="1397" />
+ <listitem open="0" type="815" id="1406" />
+ <listitem open="0" type="815" id="1409" />
+ <listitem open="0" type="815" id="1413" />
+ <listitem open="0" type="815" id="1418" />
+ </listitem>
+ <listitem open="0" type="813" id="424" />
+ <listitem open="0" type="813" id="1796" />
+ <listitem open="0" type="813" id="1676" />
+ <listitem open="0" type="813" id="1694" >
+ <listitem open="0" type="814" id="1718" />
+ <listitem open="0" type="814" id="1720" />
+ <listitem open="0" type="814" id="1722" />
+ <listitem open="0" type="814" id="1724" />
+ <listitem open="0" type="814" id="1725" />
+ <listitem open="0" type="814" id="1726" />
+ <listitem open="0" type="814" id="1751" />
+ <listitem open="0" type="814" id="1753" />
+ <listitem open="0" type="814" id="1754" />
+ <listitem open="0" type="814" id="1755" />
+ <listitem open="0" type="814" id="1756" />
+ <listitem open="0" type="814" id="1757" />
+ <listitem open="0" type="814" id="1759" />
+ <listitem open="0" type="814" id="1760" />
+ <listitem open="0" type="814" id="1761" />
+ <listitem open="0" type="814" id="1762" />
+ <listitem open="0" type="814" id="1763" />
+ <listitem open="0" type="814" id="1765" />
+ <listitem open="0" type="814" id="1767" />
+ <listitem open="0" type="814" id="1768" />
+ <listitem open="0" type="814" id="1770" />
+ <listitem open="0" type="814" id="1772" />
+ <listitem open="0" type="814" id="1774" />
+ <listitem open="0" type="814" id="1776" />
+ <listitem open="0" type="814" id="1778" />
+ <listitem open="0" type="814" id="1780" />
+ <listitem open="0" type="814" id="1782" />
+ <listitem open="0" type="814" id="1784" />
+ <listitem open="0" type="814" id="1786" />
+ <listitem open="0" type="814" id="1788" />
+ <listitem open="0" type="814" id="1790" />
+ <listitem open="0" type="814" id="1792" />
+ <listitem open="0" type="814" id="1793" />
+ <listitem open="0" type="814" id="1794" />
+ <listitem open="0" type="814" id="1795" />
+ <listitem open="0" type="815" id="1698" />
+ <listitem open="0" type="815" id="1703" />
+ <listitem open="0" type="815" id="1704" />
+ <listitem open="0" type="815" id="1708" />
+ <listitem open="0" type="815" id="1712" />
+ <listitem open="0" type="815" id="1714" />
+ <listitem open="0" type="815" id="1727" />
+ <listitem open="0" type="815" id="1728" />
+ <listitem open="0" type="815" id="1730" />
+ <listitem open="0" type="815" id="1732" />
+ <listitem open="0" type="815" id="1734" />
+ <listitem open="0" type="815" id="1736" />
+ <listitem open="0" type="815" id="1738" />
+ <listitem open="0" type="815" id="1740" />
+ <listitem open="0" type="815" id="1742" />
+ <listitem open="0" type="815" id="1744" />
+ <listitem open="0" type="815" id="1745" />
+ <listitem open="0" type="815" id="1746" />
+ <listitem open="0" type="815" id="1747" />
+ <listitem open="0" type="815" id="1748" />
+ <listitem open="0" type="815" id="1749" />
+ </listitem>
+ <listitem open="0" type="813" id="450" />
+ <listitem open="0" type="813" id="451" />
+ <listitem open="0" type="813" id="435" />
+ <listitem open="0" type="813" id="1682" />
+ <listitem open="0" type="813" id="578" />
+ <listitem open="0" type="813" id="436" />
+ <listitem open="0" type="813" id="1253" >
+ <listitem open="0" type="814" id="1259" />
+ <listitem open="0" type="815" id="1254" />
+ <listitem open="0" type="815" id="1255" />
+ <listitem open="0" type="815" id="1256" />
+ <listitem open="0" type="815" id="1258" />
+ </listitem>
+ <listitem open="0" type="813" id="631" >
+ <listitem open="0" type="813" id="633" />
+ <listitem open="0" type="814" id="655" />
+ <listitem open="0" type="815" id="634" />
+ <listitem open="0" type="815" id="635" />
+ <listitem open="0" type="815" id="636" />
+ <listitem open="0" type="815" id="638" />
+ <listitem open="0" type="815" id="641" />
+ <listitem open="0" type="815" id="643" />
+ <listitem open="0" type="815" id="645" />
+ <listitem open="0" type="815" id="647" />
+ <listitem open="0" type="815" id="649" />
+ <listitem open="0" type="815" id="650" />
+ <listitem open="0" type="815" id="653" />
+ <listitem open="0" type="816" id="632" />
+ </listitem>
+ <listitem open="0" type="813" id="573" />
+ <listitem open="0" type="813" id="1691" />
+ <listitem open="0" type="813" id="429" >
+ <listitem open="0" type="814" id="684" />
+ <listitem open="0" type="814" id="686" />
+ <listitem open="0" type="814" id="687" />
+ <listitem open="0" type="814" id="688" />
+ <listitem open="0" type="814" id="689" />
+ <listitem open="0" type="815" id="676" />
+ <listitem open="0" type="815" id="680" />
+ <listitem open="0" type="815" id="681" />
+ <listitem open="0" type="815" id="682" />
+ <listitem open="0" type="815" id="683" />
+ </listitem>
+ <listitem open="0" type="813" id="690" >
+ <listitem open="0" type="813" id="691" />
+ <listitem open="0" type="813" id="693" />
+ <listitem open="0" type="813" id="692" />
+ <listitem open="0" type="814" id="756" />
+ <listitem open="0" type="814" id="757" />
+ <listitem open="0" type="814" id="758" />
+ <listitem open="0" type="814" id="759" />
+ <listitem open="0" type="814" id="760" />
+ <listitem open="0" type="814" id="761" />
+ <listitem open="0" type="814" id="762" />
+ <listitem open="0" type="814" id="763" />
+ <listitem open="0" type="814" id="764" />
+ <listitem open="0" type="814" id="766" />
+ <listitem open="0" type="814" id="767" />
+ <listitem open="0" type="815" id="694" />
+ <listitem open="0" type="815" id="695" />
+ <listitem open="0" type="815" id="696" />
+ <listitem open="0" type="815" id="699" />
+ <listitem open="0" type="815" id="701" />
+ <listitem open="0" type="815" id="705" />
+ <listitem open="0" type="815" id="708" />
+ <listitem open="0" type="815" id="711" />
+ <listitem open="0" type="815" id="712" />
+ <listitem open="0" type="815" id="713" />
+ <listitem open="0" type="815" id="717" />
+ <listitem open="0" type="815" id="720" />
+ <listitem open="0" type="815" id="722" />
+ <listitem open="0" type="815" id="724" />
+ <listitem open="0" type="815" id="725" />
+ <listitem open="0" type="815" id="726" />
+ <listitem open="0" type="815" id="727" />
+ <listitem open="0" type="815" id="731" />
+ <listitem open="0" type="815" id="732" />
+ <listitem open="0" type="815" id="740" />
+ <listitem open="0" type="815" id="746" />
+ <listitem open="0" type="815" id="748" />
+ <listitem open="0" type="815" id="750" />
+ </listitem>
+ <listitem open="0" type="813" id="430" />
+ <listitem open="0" type="813" id="1425" />
+ <listitem open="0" type="813" id="1431" />
+ <listitem open="0" type="813" id="1689" />
+ <listitem open="0" type="813" id="405" />
+ <listitem open="0" type="813" id="406" />
+ <listitem open="0" type="813" id="541" >
+ <listitem open="0" type="814" id="568" />
+ <listitem open="0" type="814" id="569" />
+ <listitem open="0" type="815" id="546" />
+ <listitem open="0" type="815" id="547" />
+ <listitem open="0" type="815" id="552" />
+ <listitem open="0" type="815" id="553" />
+ <listitem open="0" type="815" id="554" />
+ <listitem open="0" type="815" id="559" />
+ <listitem open="0" type="815" id="562" />
+ <listitem open="0" type="815" id="565" />
+ </listitem>
+ <listitem open="0" type="813" id="570" />
+ <listitem open="0" type="813" id="383" >
+ <listitem open="0" type="814" id="1135" />
+ <listitem open="0" type="814" id="1136" />
+ <listitem open="0" type="814" id="1137" />
+ <listitem open="0" type="814" id="1138" />
+ <listitem open="0" type="814" id="1139" />
+ <listitem open="0" type="814" id="1140" />
+ <listitem open="0" type="814" id="1141" />
+ <listitem open="0" type="814" id="1142" />
+ <listitem open="0" type="814" id="1143" />
+ <listitem open="0" type="814" id="1144" />
+ <listitem open="0" type="814" id="1145" />
+ <listitem open="0" type="814" id="1146" />
+ <listitem open="0" type="814" id="1147" />
+ <listitem open="0" type="814" id="1148" />
+ <listitem open="0" type="814" id="1149" />
+ <listitem open="0" type="814" id="1150" />
+ <listitem open="0" type="814" id="1151" />
+ <listitem open="0" type="814" id="1152" />
+ <listitem open="0" type="814" id="1154" />
+ <listitem open="0" type="814" id="1155" />
+ <listitem open="0" type="814" id="1156" />
+ <listitem open="0" type="814" id="1157" />
+ <listitem open="0" type="814" id="1158" />
+ <listitem open="0" type="814" id="1159" />
+ <listitem open="0" type="815" id="967" />
+ <listitem open="0" type="815" id="973" />
+ <listitem open="0" type="815" id="976" />
+ <listitem open="0" type="815" id="977" />
+ <listitem open="0" type="815" id="979" />
+ <listitem open="0" type="815" id="984" />
+ <listitem open="0" type="815" id="993" />
+ <listitem open="0" type="815" id="994" />
+ <listitem open="0" type="815" id="996" />
+ <listitem open="0" type="815" id="997" />
+ <listitem open="0" type="815" id="999" />
+ <listitem open="0" type="815" id="1000" />
+ <listitem open="0" type="815" id="1004" />
+ <listitem open="0" type="815" id="1007" />
+ <listitem open="0" type="815" id="1012" />
+ <listitem open="0" type="815" id="1015" />
+ <listitem open="0" type="815" id="1019" />
+ <listitem open="0" type="815" id="1023" />
+ <listitem open="0" type="815" id="1024" />
+ <listitem open="0" type="815" id="1027" />
+ <listitem open="0" type="815" id="1030" />
+ <listitem open="0" type="815" id="1031" />
+ <listitem open="0" type="815" id="1033" />
+ <listitem open="0" type="815" id="1036" />
+ <listitem open="0" type="815" id="1039" />
+ <listitem open="0" type="815" id="1042" />
+ <listitem open="0" type="815" id="1043" />
+ <listitem open="0" type="815" id="1044" />
+ <listitem open="0" type="815" id="1047" />
+ <listitem open="0" type="815" id="1048" />
+ <listitem open="0" type="815" id="1049" />
+ <listitem open="0" type="815" id="1050" />
+ <listitem open="0" type="815" id="1053" />
+ <listitem open="0" type="815" id="1054" />
+ <listitem open="0" type="815" id="1057" />
+ <listitem open="0" type="815" id="1059" />
+ <listitem open="0" type="815" id="1061" />
+ <listitem open="0" type="815" id="1064" />
+ <listitem open="0" type="815" id="1066" />
+ <listitem open="0" type="815" id="1068" />
+ <listitem open="0" type="815" id="1071" />
+ <listitem open="0" type="815" id="1073" />
+ <listitem open="0" type="815" id="1075" />
+ <listitem open="0" type="815" id="1077" />
+ <listitem open="0" type="815" id="1079" />
+ <listitem open="0" type="815" id="1081" />
+ <listitem open="0" type="815" id="1084" />
+ <listitem open="0" type="815" id="1085" />
+ <listitem open="0" type="815" id="1086" />
+ <listitem open="0" type="815" id="1087" />
+ <listitem open="0" type="815" id="1088" />
+ <listitem open="0" type="815" id="1089" />
+ <listitem open="0" type="815" id="1090" />
+ <listitem open="0" type="815" id="1092" />
+ <listitem open="0" type="815" id="1093" />
+ <listitem open="0" type="815" id="1094" />
+ <listitem open="0" type="815" id="1099" />
+ <listitem open="0" type="815" id="1101" />
+ <listitem open="0" type="815" id="1102" />
+ <listitem open="0" type="815" id="1103" />
+ <listitem open="0" type="815" id="1105" />
+ <listitem open="0" type="815" id="1107" />
+ <listitem open="0" type="815" id="1109" />
+ <listitem open="0" type="815" id="1111" />
+ <listitem open="0" type="815" id="1113" />
+ <listitem open="0" type="815" id="1116" />
+ <listitem open="0" type="815" id="1118" />
+ <listitem open="0" type="815" id="1122" />
+ <listitem open="0" type="815" id="1124" />
+ <listitem open="0" type="815" id="1125" />
+ <listitem open="0" type="815" id="1126" />
+ <listitem open="0" type="815" id="1129" />
+ </listitem>
+ <listitem open="0" type="813" id="384" />
+ <listitem open="0" type="813" id="1300" >
+ <listitem open="0" type="815" id="1304" />
+ <listitem open="0" type="815" id="1305" />
+ <listitem open="0" type="815" id="1306" />
+ <listitem open="0" type="815" id="1308" />
+ </listitem>
+ <listitem open="0" type="813" id="816" >
+ <listitem open="0" type="815" id="820" />
+ <listitem open="0" type="815" id="821" />
+ <listitem open="0" type="815" id="823" />
+ </listitem>
+ <listitem open="0" type="813" id="393" />
+ <listitem open="0" type="813" id="1681" />
+ <listitem open="0" type="813" id="394" />
+ <listitem open="0" type="813" id="1358" />
+ <listitem open="0" type="813" id="1310" >
+ <listitem open="0" type="815" id="1314" />
+ <listitem open="0" type="815" id="1315" />
+ <listitem open="0" type="815" id="1316" />
+ </listitem>
+ <listitem open="0" type="813" id="825" >
+ <listitem open="0" type="815" id="829" />
+ <listitem open="0" type="815" id="830" />
+ </listitem>
+ <listitem open="0" type="813" id="958" />
+ <listitem open="0" type="813" id="1680" />
+ <listitem open="0" type="813" id="388" >
+ <listitem open="0" type="814" id="1627" />
+ <listitem open="0" type="814" id="1628" />
+ <listitem open="0" type="814" id="1629" />
+ <listitem open="0" type="814" id="1630" />
+ <listitem open="0" type="814" id="1631" />
+ <listitem open="0" type="814" id="1632" />
+ <listitem open="0" type="814" id="1633" />
+ <listitem open="0" type="814" id="1634" />
+ <listitem open="0" type="814" id="1635" />
+ <listitem open="0" type="814" id="1636" />
+ <listitem open="0" type="814" id="1637" />
+ <listitem open="0" type="814" id="1647" />
+ <listitem open="0" type="814" id="1648" />
+ <listitem open="0" type="815" id="1439" />
+ <listitem open="0" type="815" id="1442" />
+ <listitem open="0" type="815" id="1447" />
+ <listitem open="0" type="815" id="1450" />
+ <listitem open="0" type="815" id="1451" />
+ <listitem open="0" type="815" id="1453" />
+ <listitem open="0" type="815" id="1455" />
+ <listitem open="0" type="815" id="1456" />
+ <listitem open="0" type="815" id="1459" />
+ <listitem open="0" type="815" id="1461" />
+ <listitem open="0" type="815" id="1466" />
+ <listitem open="0" type="815" id="1468" />
+ <listitem open="0" type="815" id="1470" />
+ <listitem open="0" type="815" id="1473" />
+ <listitem open="0" type="815" id="1475" />
+ <listitem open="0" type="815" id="1480" />
+ <listitem open="0" type="815" id="1481" />
+ <listitem open="0" type="815" id="1486" />
+ <listitem open="0" type="815" id="1487" />
+ <listitem open="0" type="815" id="1492" />
+ <listitem open="0" type="815" id="1494" />
+ <listitem open="0" type="815" id="1499" />
+ <listitem open="0" type="815" id="1505" />
+ <listitem open="0" type="815" id="1509" />
+ <listitem open="0" type="815" id="1512" />
+ <listitem open="0" type="815" id="1518" />
+ <listitem open="0" type="815" id="1520" />
+ <listitem open="0" type="815" id="1521" />
+ <listitem open="0" type="815" id="1523" />
+ <listitem open="0" type="815" id="1529" />
+ <listitem open="0" type="815" id="1534" />
+ <listitem open="0" type="815" id="1536" />
+ <listitem open="0" type="815" id="1539" />
+ <listitem open="0" type="815" id="1540" />
+ <listitem open="0" type="815" id="1541" />
+ <listitem open="0" type="815" id="1542" />
+ <listitem open="0" type="815" id="1544" />
+ <listitem open="0" type="815" id="1545" />
+ <listitem open="0" type="815" id="1547" />
+ <listitem open="0" type="815" id="1548" />
+ <listitem open="0" type="815" id="1549" />
+ <listitem open="0" type="815" id="1551" />
+ <listitem open="0" type="815" id="1553" />
+ <listitem open="0" type="815" id="1554" />
+ <listitem open="0" type="815" id="1555" />
+ <listitem open="0" type="815" id="1558" />
+ <listitem open="0" type="815" id="1560" />
+ <listitem open="0" type="815" id="1565" />
+ <listitem open="0" type="815" id="1568" />
+ <listitem open="0" type="815" id="1572" />
+ <listitem open="0" type="815" id="1581" />
+ <listitem open="0" type="815" id="1582" />
+ <listitem open="0" type="815" id="1583" />
+ <listitem open="0" type="815" id="1584" />
+ <listitem open="0" type="815" id="1586" />
+ <listitem open="0" type="815" id="1588" />
+ <listitem open="0" type="815" id="1594" />
+ <listitem open="0" type="815" id="1599" />
+ <listitem open="0" type="815" id="1604" />
+ <listitem open="0" type="815" id="1605" />
+ <listitem open="0" type="815" id="1607" />
+ <listitem open="0" type="815" id="1609" />
+ <listitem open="0" type="815" id="1611" />
+ <listitem open="0" type="815" id="1612" />
+ <listitem open="0" type="815" id="1613" />
+ <listitem open="0" type="815" id="1615" />
+ <listitem open="0" type="815" id="1617" />
+ <listitem open="0" type="815" id="1620" />
+ <listitem open="0" type="815" id="1621" />
+ <listitem open="0" type="815" id="1622" />
+ <listitem open="0" type="815" id="1624" />
+ <listitem open="0" type="815" id="1638" />
+ <listitem open="0" type="815" id="1641" />
+ <listitem open="0" type="815" id="1644" />
+ </listitem>
+ <listitem open="0" type="813" id="389" />
+ <listitem open="0" type="813" id="410" />
+ <listitem open="0" type="813" id="412" />
+ <listitem open="0" type="813" id="413" />
+ <listitem open="0" type="813" id="411" />
+ <listitem open="0" type="813" id="959" />
+ <listitem open="0" type="813" id="1692" />
+ <listitem open="0" type="813" id="574" />
+ <listitem open="0" type="813" id="1225" >
+ <listitem open="0" type="814" id="1248" />
+ <listitem open="0" type="814" id="1249" />
+ <listitem open="0" type="814" id="1250" />
+ <listitem open="0" type="814" id="1251" />
+ <listitem open="0" type="814" id="1252" />
+ <listitem open="0" type="815" id="1226" />
+ <listitem open="0" type="815" id="1231" />
+ <listitem open="0" type="815" id="1236" />
+ <listitem open="0" type="815" id="1237" />
+ <listitem open="0" type="815" id="1239" />
+ <listitem open="0" type="815" id="1240" />
+ <listitem open="0" type="815" id="1241" />
+ <listitem open="0" type="815" id="1243" />
+ <listitem open="0" type="815" id="1244" />
+ <listitem open="0" type="815" id="1246" />
+ <listitem open="0" type="815" id="1247" />
+ </listitem>
+ <listitem open="0" type="813" id="1202" >
+ <listitem open="0" type="814" id="1220" />
+ <listitem open="0" type="814" id="1221" />
+ <listitem open="0" type="814" id="1222" />
+ <listitem open="0" type="814" id="1223" />
+ <listitem open="0" type="814" id="1224" />
+ <listitem open="0" type="815" id="1203" />
+ <listitem open="0" type="815" id="1209" />
+ <listitem open="0" type="815" id="1210" />
+ <listitem open="0" type="815" id="1212" />
+ <listitem open="0" type="815" id="1213" />
+ <listitem open="0" type="815" id="1214" />
+ <listitem open="0" type="815" id="1216" />
+ <listitem open="0" type="815" id="1217" />
+ <listitem open="0" type="815" id="1219" />
+ </listitem>
+ <listitem open="0" type="813" id="416" />
+ <listitem open="0" type="813" id="417" />
+ <listitem open="0" type="813" id="457" />
+ <listitem open="0" type="813" id="437" >
+ <listitem open="0" type="814" id="949" />
+ <listitem open="0" type="814" id="950" />
+ <listitem open="0" type="814" id="951" />
+ <listitem open="0" type="814" id="952" />
+ <listitem open="0" type="814" id="953" />
+ <listitem open="0" type="814" id="954" />
+ <listitem open="0" type="814" id="955" />
+ <listitem open="0" type="814" id="956" />
+ <listitem open="0" type="815" id="923" />
+ <listitem open="0" type="815" id="926" />
+ <listitem open="0" type="815" id="929" />
+ <listitem open="0" type="815" id="934" />
+ <listitem open="0" type="815" id="935" />
+ <listitem open="0" type="815" id="936" />
+ <listitem open="0" type="815" id="937" />
+ <listitem open="0" type="815" id="938" />
+ <listitem open="0" type="815" id="940" />
+ <listitem open="0" type="815" id="942" />
+ <listitem open="0" type="815" id="943" />
+ <listitem open="0" type="815" id="944" />
+ <listitem open="0" type="815" id="945" />
+ <listitem open="0" type="815" id="946" />
+ <listitem open="0" type="815" id="947" />
+ <listitem open="0" type="815" id="948" />
+ </listitem>
+ <listitem open="0" type="813" id="438" />
+ <listitem open="0" type="813" id="576" />
+ <listitem open="0" type="813" id="833" />
+ <listitem open="0" type="813" id="1186" >
+ <listitem open="0" type="814" id="1200" />
+ <listitem open="0" type="814" id="1201" />
+ <listitem open="0" type="815" id="1187" />
+ <listitem open="0" type="815" id="1191" />
+ <listitem open="0" type="815" id="1192" />
+ <listitem open="0" type="815" id="1194" />
+ <listitem open="0" type="815" id="1196" />
+ <listitem open="0" type="815" id="1198" />
+ </listitem>
+ <listitem open="0" type="813" id="1160" >
+ <listitem open="0" type="815" id="1161" />
+ <listitem open="0" type="815" id="1162" />
+ <listitem open="0" type="815" id="1165" />
+ </listitem>
+ <listitem open="0" type="813" id="1168" >
+ <listitem open="0" type="815" id="1172" />
+ <listitem open="0" type="815" id="1173" />
+ <listitem open="0" type="815" id="1175" />
+ </listitem>
+ <listitem open="0" type="813" id="1177" >
+ <listitem open="0" type="815" id="1181" />
+ <listitem open="0" type="815" id="1182" />
+ <listitem open="0" type="815" id="1184" />
+ </listitem>
+ <listitem open="0" type="813" id="1690" />
+ <listitem open="0" type="813" id="456" />
+ <listitem open="0" type="813" id="1424" />
+ <listitem open="0" type="813" id="1429" />
+ <listitem open="0" type="813" id="868" >
+ <listitem open="0" type="814" id="911" />
+ <listitem open="0" type="814" id="912" />
+ <listitem open="0" type="814" id="913" />
+ <listitem open="0" type="814" id="914" />
+ <listitem open="0" type="814" id="915" />
+ <listitem open="0" type="814" id="916" />
+ <listitem open="0" type="815" id="873" />
+ <listitem open="0" type="815" id="875" />
+ <listitem open="0" type="815" id="876" />
+ <listitem open="0" type="815" id="877" />
+ <listitem open="0" type="815" id="878" />
+ <listitem open="0" type="815" id="880" />
+ <listitem open="0" type="815" id="881" />
+ <listitem open="0" type="815" id="883" />
+ <listitem open="0" type="815" id="884" />
+ <listitem open="0" type="815" id="886" />
+ <listitem open="0" type="815" id="887" />
+ <listitem open="0" type="815" id="889" />
+ <listitem open="0" type="815" id="890" />
+ <listitem open="0" type="815" id="892" />
+ <listitem open="0" type="815" id="893" />
+ <listitem open="0" type="815" id="894" />
+ <listitem open="0" type="815" id="896" />
+ <listitem open="0" type="815" id="898" />
+ <listitem open="0" type="815" id="901" />
+ <listitem open="0" type="815" id="903" />
+ <listitem open="0" type="815" id="905" />
+ <listitem open="0" type="815" id="908" />
+ </listitem>
+ <listitem open="0" type="813" id="1693" />
+ <listitem open="0" type="813" id="1428" />
+ <listitem open="0" type="813" id="776" >
+ <listitem open="0" type="815" id="777" />
+ <listitem open="0" type="815" id="778" />
+ <listitem open="0" type="815" id="779" />
+ </listitem>
+ <listitem open="0" type="813" id="832" >
+ <listitem open="0" type="813" id="840" >
+ <listitem open="0" type="814" id="841" />
+ <listitem open="0" type="814" id="843" />
+ </listitem>
+ <listitem open="0" type="813" id="837" >
+ <listitem open="0" type="814" id="838" />
+ <listitem open="0" type="814" id="839" />
+ </listitem>
+ <listitem open="0" type="814" id="854" />
+ <listitem open="0" type="814" id="865" />
+ <listitem open="0" type="814" id="866" />
+ <listitem open="0" type="815" id="844" />
+ <listitem open="0" type="815" id="845" />
+ <listitem open="0" type="815" id="846" />
+ <listitem open="0" type="815" id="849" />
+ <listitem open="0" type="815" id="855" />
+ <listitem open="0" type="815" id="867" />
+ </listitem>
+ <listitem open="0" type="813" id="398" >
+ <listitem open="0" type="814" id="1671" />
+ <listitem open="0" type="814" id="1672" />
+ <listitem open="0" type="814" id="1673" />
+ <listitem open="0" type="815" id="1652" />
+ <listitem open="0" type="815" id="1655" />
+ <listitem open="0" type="815" id="1659" />
+ <listitem open="0" type="815" id="1660" />
+ <listitem open="0" type="815" id="1661" />
+ <listitem open="0" type="815" id="1663" />
+ <listitem open="0" type="815" id="1665" />
+ <listitem open="0" type="815" id="1667" />
+ <listitem open="0" type="815" id="1670" />
+ </listitem>
+ <listitem open="0" type="813" id="577" >
+ <listitem open="0" type="814" id="1834" />
+ <listitem open="0" type="814" id="1835" />
+ <listitem open="0" type="814" id="1836" />
+ <listitem open="0" type="814" id="1838" />
+ <listitem open="0" type="814" id="1839" />
+ <listitem open="0" type="814" id="1840" />
+ <listitem open="0" type="814" id="1841" />
+ <listitem open="0" type="814" id="1842" />
+ <listitem open="0" type="814" id="1843" />
+ <listitem open="0" type="814" id="1844" />
+ <listitem open="0" type="814" id="1845" />
+ <listitem open="0" type="814" id="1846" />
+ <listitem open="0" type="814" id="1847" />
+ <listitem open="0" type="814" id="1848" />
+ <listitem open="0" type="814" id="1849" />
+ <listitem open="0" type="814" id="1850" />
+ <listitem open="0" type="814" id="1851" />
+ <listitem open="0" type="814" id="1852" />
+ <listitem open="0" type="814" id="1853" />
+ <listitem open="0" type="814" id="1854" />
+ <listitem open="0" type="814" id="1855" />
+ <listitem open="0" type="814" id="1856" />
+ <listitem open="0" type="814" id="1857" />
+ <listitem open="0" type="814" id="1859" />
+ <listitem open="0" type="815" id="1801" />
+ <listitem open="0" type="815" id="1805" />
+ <listitem open="0" type="815" id="1806" />
+ <listitem open="0" type="815" id="1808" />
+ <listitem open="0" type="815" id="1811" />
+ <listitem open="0" type="815" id="1812" />
+ <listitem open="0" type="815" id="1814" />
+ <listitem open="0" type="815" id="1815" />
+ <listitem open="0" type="815" id="1816" />
+ <listitem open="0" type="815" id="1817" />
+ <listitem open="0" type="815" id="1818" />
+ <listitem open="0" type="815" id="1819" />
+ <listitem open="0" type="815" id="1820" />
+ <listitem open="0" type="815" id="1821" />
+ <listitem open="0" type="815" id="1822" />
+ <listitem open="0" type="815" id="1823" />
+ <listitem open="0" type="815" id="1824" />
+ <listitem open="0" type="815" id="1825" />
+ <listitem open="0" type="815" id="1826" />
+ <listitem open="0" type="815" id="1827" />
+ <listitem open="0" type="815" id="1828" />
+ <listitem open="0" type="815" id="1829" />
+ <listitem open="0" type="815" id="1830" />
+ <listitem open="0" type="815" id="1831" />
+ <listitem open="0" type="815" id="1832" />
+ <listitem open="0" type="815" id="1833" />
+ </listitem>
+ <listitem open="0" type="813" id="399" />
+ <listitem open="0" type="813" id="363" >
+ <listitem open="0" type="813" id="369" />
+ <listitem open="0" type="815" id="370" />
+ <listitem open="0" type="815" id="371" />
+ <listitem open="0" type="815" id="372" />
+ <listitem open="0" type="815" id="377" />
+ <listitem open="0" type="816" id="364" />
+ </listitem>
+ <listitem open="0" type="813" id="1260" >
+ <listitem open="0" type="815" id="1264" />
+ <listitem open="0" type="815" id="1265" />
+ <listitem open="0" type="815" id="1266" />
+ </listitem>
+ <listitem open="0" type="813" id="781" >
+ <listitem open="0" type="815" id="785" />
+ <listitem open="0" type="815" id="786" />
+ </listitem>
+ <listitem open="0" type="813" id="426" />
+ <listitem open="0" type="813" id="428" />
+ <listitem open="0" type="813" id="427" />
+ <listitem open="0" type="813" id="1687" />
+ <listitem open="0" type="813" id="1348" />
+ <listitem open="0" type="813" id="418" />
+ <listitem open="0" type="813" id="414" />
+ <listitem open="0" type="813" id="415" />
+ <listitem open="0" type="813" id="419" />
+ <listitem open="0" type="813" id="1318" >
+ <listitem open="0" type="814" id="1344" />
+ <listitem open="0" type="814" id="1345" />
+ <listitem open="0" type="815" id="1322" />
+ <listitem open="0" type="815" id="1323" />
+ <listitem open="0" type="815" id="1324" />
+ <listitem open="0" type="815" id="1326" />
+ <listitem open="0" type="815" id="1334" />
+ <listitem open="0" type="815" id="1346" />
+ </listitem>
+ <listitem open="0" type="813" id="1276" >
+ <listitem open="0" type="815" id="1280" />
+ <listitem open="0" type="815" id="1281" />
+ <listitem open="0" type="815" id="1282" />
+ </listitem>
+ <listitem open="0" type="813" id="795" >
+ <listitem open="0" type="815" id="799" />
+ <listitem open="0" type="815" id="800" />
+ </listitem>
+ <listitem open="0" type="813" id="575" />
+ <listitem open="0" type="813" id="1426" />
+ <listitem open="0" type="813" id="1430" />
+ <listitem open="0" type="813" id="1675" />
+ <listitem open="0" type="813" id="957" />
+ <listitem open="0" type="813" id="571" />
+ <listitem open="0" type="813" id="1347" />
+ <listitem open="0" type="813" id="1677" />
+ <listitem open="0" type="813" id="1678" />
+ <listitem open="0" type="813" id="361" />
+ <listitem open="0" type="813" id="662" />
+ <listitem open="0" type="813" id="591" />
+ <listitem open="0" type="813" id="579" />
+ <listitem open="0" type="813" id="714" />
+ <listitem open="0" type="813" id="879" />
+ <listitem open="0" type="813" id="869" />
+ <listitem open="0" type="813" id="733" />
+ <listitem open="0" type="813" id="989" />
+ <listitem open="0" type="813" id="685" />
+ <listitem open="0" type="813" id="497" />
+ <listitem open="0" type="813" id="1858" />
+ <listitem open="0" type="813" id="475" />
+ <listitem open="0" type="813" id="728" />
+ <listitem open="0" type="813" id="548" />
+ <listitem open="0" type="813" id="1163" />
+ <listitem open="0" type="813" id="365" />
+ <listitem open="0" type="813" id="1427" />
+ <listitem open="0" type="813" id="455" />
+ <listitem open="0" type="813" id="463" />
+ <listitem open="0" type="813" id="1618" />
+ <listitem open="0" type="813" id="924" />
+ <listitem open="0" type="813" id="1388" />
+ <listitem open="0" type="813" id="558" />
+ <listitem open="0" type="813" id="930" />
+ <listitem open="0" type="813" id="939" />
+ <listitem open="0" type="813" id="941" />
+ <listitem open="0" type="813" id="447" />
+ <listitem open="0" type="813" id="449" />
+ <listitem open="0" type="813" id="448" />
+ <listitem open="0" type="813" id="442" />
+ <listitem open="0" type="813" id="444" />
+ <listitem open="0" type="813" id="443" />
+ <listitem open="0" type="813" id="452" />
+ <listitem open="0" type="813" id="454" />
+ <listitem open="0" type="813" id="453" />
+ <listitem open="0" type="813" id="407" />
+ <listitem open="0" type="813" id="409" />
+ <listitem open="0" type="813" id="408" />
+ <listitem open="0" type="813" id="385" />
+ <listitem open="0" type="813" id="387" />
+ <listitem open="0" type="813" id="386" />
+ <listitem open="0" type="813" id="395" />
+ <listitem open="0" type="813" id="397" />
+ <listitem open="0" type="813" id="396" />
+ <listitem open="0" type="813" id="390" />
+ <listitem open="0" type="813" id="392" />
+ <listitem open="0" type="813" id="391" />
+ <listitem open="0" type="813" id="439" />
+ <listitem open="0" type="813" id="425" />
+ <listitem open="0" type="813" id="400" />
+ <listitem open="0" type="813" id="402" />
+ <listitem open="0" type="813" id="401" />
+ <listitem open="0" type="813" id="420" />
+ <listitem open="0" type="813" id="422" />
+ <listitem open="0" type="813" id="421" />
+ <listitem open="0" type="817" id="11" >
+ <listitem open="0" type="815" id="458" />
+ <listitem open="0" type="815" id="459" />
+ <listitem open="0" type="815" id="460" />
+ <listitem open="0" type="815" id="462" />
+ <listitem open="0" type="815" id="464" />
+ <listitem open="0" type="815" id="465" />
+ <listitem open="0" type="815" id="468" />
+ <listitem open="0" type="815" id="469" />
+ <listitem open="0" type="815" id="474" />
+ <listitem open="0" type="815" id="478" />
+ <listitem open="0" type="815" id="479" />
+ <listitem open="0" type="815" id="482" />
+ <listitem open="0" type="815" id="483" />
+ <listitem open="0" type="815" id="486" />
+ <listitem open="0" type="815" id="491" />
+ <listitem open="0" type="815" id="493" />
+ <listitem open="0" type="815" id="496" />
+ <listitem open="0" type="815" id="500" />
+ <listitem open="0" type="815" id="503" />
+ <listitem open="0" type="815" id="505" />
+ <listitem open="0" type="815" id="507" />
+ <listitem open="0" type="815" id="511" />
+ <listitem open="0" type="815" id="513" />
+ <listitem open="0" type="815" id="515" />
+ <listitem open="0" type="815" id="517" />
+ <listitem open="0" type="815" id="519" />
+ <listitem open="0" type="815" id="522" />
+ <listitem open="0" type="815" id="525" />
+ </listitem>
+ <listitem open="1" type="817" id="17" />
+ <listitem open="1" type="817" id="16" />
+ <listitem open="1" type="817" id="15" />
+ <listitem open="0" type="817" id="13" >
+ <listitem open="0" type="815" id="20" />
+ <listitem open="0" type="815" id="25" />
+ <listitem open="0" type="815" id="28" />
+ <listitem open="0" type="815" id="43" />
+ <listitem open="0" type="815" id="50" />
+ <listitem open="0" type="815" id="55" />
+ <listitem open="0" type="815" id="106" />
+ <listitem open="0" type="815" id="125" />
+ <listitem open="0" type="815" id="140" />
+ </listitem>
+ <listitem open="1" type="817" id="14" />
+ <listitem open="1" type="817" id="18" />
+ <listitem open="0" type="818" id="1037" >
+ <listitem open="0" type="813" id="1038" />
+ </listitem>
+ <listitem open="0" type="818" id="677" >
+ <listitem open="0" type="813" id="678" />
+ </listitem>
+ <listitem open="0" type="818" id="373" >
+ <listitem open="0" type="813" id="374" />
+ <listitem open="0" type="813" id="376" />
+ <listitem open="0" type="813" id="378" />
+ <listitem open="0" type="813" id="380" />
+ <listitem open="0" type="813" id="382" />
+ </listitem>
+ <listitem open="1" type="830" label="Datatypes" >
+ <listitem open="0" type="829" id="856" />
+ <listitem open="0" type="829" id="842" />
+ <listitem open="0" type="829" id="1771" />
+ <listitem open="0" type="829" id="978" />
+ <listitem open="0" type="829" id="1809" />
+ <listitem open="0" type="829" id="1701" />
+ <listitem open="0" type="829" id="1465" />
+ <listitem open="0" type="829" id="1777" />
+ <listitem open="0" type="829" id="1781" />
+ <listitem open="0" type="829" id="1773" />
+ <listitem open="0" type="829" id="599" />
+ <listitem open="0" type="829" id="527" />
+ <listitem open="0" type="829" id="608" />
+ <listitem open="0" type="829" id="540" />
+ <listitem open="0" type="829" id="583" />
+ <listitem open="0" type="829" id="630" />
+ <listitem open="0" type="829" id="533" />
+ <listitem open="0" type="829" id="1775" />
+ <listitem open="0" type="829" id="1837" />
+ <listitem open="0" type="829" id="1398" />
+ <listitem open="0" type="829" id="1803" />
+ <listitem open="0" type="829" id="1758" />
+ <listitem open="0" type="829" id="1769" />
+ <listitem open="0" type="829" id="618" />
+ <listitem open="0" type="829" id="1332" />
+ <listitem open="0" type="829" id="1719" />
+ <listitem open="0" type="829" id="1721" />
+ <listitem open="0" type="829" id="1723" />
+ <listitem open="0" type="829" id="1717" />
+ <listitem open="0" type="829" id="603" />
+ <listitem open="0" type="829" id="1787" />
+ <listitem open="0" type="829" id="1104" />
+ <listitem open="0" type="829" id="1783" />
+ <listitem open="0" type="829" id="1128" />
+ <listitem open="0" type="829" id="1443" />
+ <listitem open="0" type="829" id="1766" />
+ <listitem open="0" type="829" id="1359" />
+ <listitem open="0" type="829" id="1153" />
+ <listitem open="0" type="829" id="1764" />
+ <listitem open="0" type="829" id="1626" />
+ <listitem open="0" type="829" id="847" />
+ <listitem open="0" type="829" id="1789" />
+ <listitem open="0" type="829" id="601" />
+ <listitem open="0" type="829" id="614" />
+ <listitem open="0" type="829" id="1167" />
+ <listitem open="0" type="829" id="1785" />
+ <listitem open="0" type="829" id="910" />
+ <listitem open="0" type="829" id="899" />
+ <listitem open="0" type="829" id="1791" />
+ <listitem open="0" type="829" id="1642" />
+ <listitem open="0" type="829" id="862" />
+ <listitem open="0" type="829" id="1639" />
+ <listitem open="0" type="829" id="616" />
+ <listitem open="0" type="829" id="1779" />
+ <listitem open="0" type="829" id="1709" />
+ <listitem open="0" type="829" id="610" />
+ <listitem open="0" type="829" id="1645" />
+ <listitem open="0" type="829" id="606" />
+ <listitem open="0" type="829" id="1699" />
+ <listitem open="0" type="829" id="1028" />
+ <listitem open="0" type="829" id="612" />
+ <listitem open="0" type="829" id="1365" />
+ <listitem open="0" type="829" id="1752" />
+ <listitem open="0" type="829" id="1750" />
+ <listitem open="0" type="829" id="669" />
+ <listitem open="0" type="829" id="1526" />
+ <listitem open="0" type="829" id="715" />
+ <listitem open="0" type="829" id="734" />
+ <listitem open="0" type="829" id="990" />
+ <listitem open="0" type="829" id="752" />
+ <listitem open="0" type="829" id="666" />
+ <listitem open="0" type="829" id="1188" />
+ <listitem open="1" type="829" id="22" />
+ <listitem open="0" type="829" id="461" />
+ <listitem open="0" type="829" id="1371" />
+ <listitem open="0" type="829" id="508" />
+ <listitem open="0" type="829" id="1395" />
+ <listitem open="1" type="829" id="5" />
+ <listitem open="1" type="829" id="8" />
+ <listitem open="1" type="829" id="4" />
+ <listitem open="0" type="829" id="1034" />
+ <listitem open="0" type="829" id="523" />
+ <listitem open="0" type="829" id="536" />
+ <listitem open="0" type="829" id="626" />
+ <listitem open="0" type="829" id="1355" />
+ <listitem open="0" type="829" id="651" />
+ <listitem open="0" type="829" id="555" />
+ <listitem open="0" type="829" id="974" />
+ <listitem open="0" type="829" id="1557" />
+ <listitem open="0" type="829" id="1056" />
+ <listitem open="0" type="829" id="1062" />
+ <listitem open="0" type="829" id="1448" />
+ <listitem open="0" type="829" id="501" />
+ <listitem open="0" type="829" id="1025" />
+ <listitem open="0" type="829" id="494" />
+ <listitem open="0" type="829" id="906" />
+ <listitem open="0" type="829" id="1040" />
+ <listitem open="0" type="829" id="663" />
+ <listitem open="0" type="829" id="1668" />
+ <listitem open="0" type="829" id="593" />
+ <listitem open="0" type="829" id="623" />
+ <listitem open="0" type="829" id="718" />
+ <listitem open="0" type="829" id="1510" />
+ <listitem open="0" type="829" id="498" />
+ <listitem open="0" type="829" id="476" />
+ <listitem open="0" type="829" id="729" />
+ <listitem open="0" type="829" id="549" />
+ <listitem open="0" type="829" id="1204" />
+ <listitem open="0" type="829" id="1537" />
+ <listitem open="0" type="829" id="1467" />
+ <listitem open="0" type="829" id="765" />
+ <listitem open="0" type="829" id="931" />
+ <listitem open="0" type="829" id="1052" />
+ <listitem open="1" type="829" id="7" />
+ <listitem open="1" type="829" id="6" />
+ <listitem open="1" type="829" id="2" />
+ <listitem open="1" type="829" id="9" />
+ <listitem open="1" type="829" id="10" />
+ <listitem open="1" type="829" id="21" />
+ </listitem>
+ <listitem open="0" type="831" id="314" />
+ <listitem open="0" type="831" id="301" />
+ <listitem open="0" type="831" id="307" />
+ <listitem open="0" type="831" id="768" />
+ <listitem open="0" type="831" id="342" />
+ <listitem open="0" type="831" id="358" />
+ <listitem open="0" type="831" id="311" />
+ </listitem>
+ <listitem open="1" type="802" label="Use Case View" />
+ <listitem open="1" type="821" label="Component View" />
+ <listitem open="1" type="827" label="Deployment View" />
+ <listitem open="1" type="836" label="Entity Relationship Model" />
+ </listitem>
+ </listview>
+ <codegeneration>
+ <codegenerator language="Java" >
+ <codedocument writeOutCode="false" package="" id="ANTDOC" fileExt=".xml" fileName="build" >
+ <textblocks>
+ <codeblockwithcomments tag="xmlDecl" text="&lt;?xml version=&quot;1.0&quot;?>" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <xmlelementblock nodeName="project" tag="projectDecl" canDelete="false" >
+ <header>
+ <codecomment tag="" text="Java ANT build document" />
+ </header>
+ <textblocks/>
+ </xmlelementblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ </codedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="2" tqparent_class="2" fileExt=".java" fileName="int" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="2" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Int&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Int ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="4" tqparent_class="4" fileExt=".java" fileName="char" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="4" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Char&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Char ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="5" tqparent_class="5" fileExt=".java" fileName="boolean" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="5" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Boolean&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Boolean ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="6" tqparent_class="6" fileExt=".java" fileName="float" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="6" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Float&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Float ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="7" tqparent_class="7" fileExt=".java" fileName="double" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="7" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Double&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Double ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="8" tqparent_class="8" fileExt=".java" fileName="byte" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="8" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Byte&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Byte ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="9" tqparent_class="9" fileExt=".java" fileName="short" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="9" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Short&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Short ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="10" tqparent_class="10" fileExt=".java" fileName="string" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="10" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class String&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public String ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="11" tqparent_class="11" fileExt=".java" fileName="KisCanvasControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_INT32;&amp;#010;import QPoint;&amp;#010;import KisPoint;&amp;#010;import QRect;&amp;#010;import KisRect;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="11" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisCanvasControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="458" tag="operation_458" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="459" tag="operation_459" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="460" tag="operation_460" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QWidget* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="462" tag="operation_462" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="464" tag="operation_464" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="465" tag="operation_465" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="468" tag="operation_468" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="469" tag="operation_469" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="474" tag="operation_474" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="478" tag="operation_478" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="479" tag="operation_479" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="482" tag="operation_482" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="483" tag="operation_483" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="486" tag="operation_486" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="491" tag="operation_491" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="493" tag="operation_493" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="496" tag="operation_496" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return QPoint " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="500" tag="operation_500" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return KisPoint " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="503" tag="operation_503" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="505" tag="operation_505" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return KisRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="507" tag="operation_507" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="511" tag="operation_511" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return QPoint " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="513" tag="operation_513" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return KisPoint " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="515" tag="operation_515" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="517" tag="operation_517" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return KisRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="519" tag="operation_519" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="522" tag="operation_522" canDelete="false" writeOutText="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="525" tag="operation_525" canDelete="false" writeOutText="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisCanvasControllerInterface&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="13" tqparent_class="13" fileExt=".java" fileName="KisMetaControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KActionCollection;&amp;#010;import KisCanvasControllerInterface;&amp;#010;import KisSelectionControllerInterface;&amp;#010;import KisLayerControllerInterface;&amp;#010;import KisImageControllerInterface;&amp;#010;import KisDockerControllerInterface;&amp;#010;import KisPainterControllerInterface;&amp;#010;import KisToolControllerInterface;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="13" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisMetaControllerInterface&amp;#010;Combines access to the various controllers that allow plugins to function within Chalk. Every controller offers a select subset of functionality centered around a particular activity. &amp;#010;&amp;#010;All this functionality is centered around a view with a certain document and an active image with an active layer. &amp;#010;&amp;#010;XXX: Should this be the basis for simple scriptability? Have every controller register every action using a KisID and a parameter description list, and offer a queryActions() and an executeAction(KisID) method?" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisMetaControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="20" tag="operation_20" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Retrieve the view widget that is controlled by this controller; it can be used to tqparent dialogs." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="25" tag="operation_25" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the KActionCollection of the current view. This can be used to associate actions directly with the main view instead of relying on the KXMLGui based configuration mechanism." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="28" tag="operation_28" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the canvas controller. The canvas controller enables zooming of the canvas and converting image coordinates to canvas and view coordinates." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="43" tag="operation_43" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the selection controller. The selection controller can be used to create and modify selections for a paint device." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="50" tag="operation_50" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the layer controller interface. The layer controller offers access to functions to add, delete transform or restack layers, " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="55" tag="operation_55" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Returns the image controller interface. The image controller offers functionality to create, delete, transform, convert, import or export images." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="106" tag="operation_106" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The docker controller allows the creating, removing, showing and hiding of docker tabs and dockers." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="125" tag="operation_125" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="The painter controller allows setting of properties like foreground and background colour and other properties that the various painters (line, fill, gradient, convolution) will use when created on a given paint device." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="140" tag="operation_140" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Returns the tool controller. The tool controller makes it possible to set a tool current and to retrieve the current tool. This is useful when tools are activated but also if a tool needs to be temporarily activated, like the move tool which should be activated if a selection tool is active and the user presses a modifier key while dragging." />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="14" tqparent_class="14" fileExt=".java" fileName="KisSelectionControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="14" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisSelectionControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSelectionControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="15" tqparent_class="15" fileExt=".java" fileName="KisLayerControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="15" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisLayerControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLayerControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="16" tqparent_class="16" fileExt=".java" fileName="KisImageControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="16" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisImageControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisImageControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="17" tqparent_class="17" fileExt=".java" fileName="KisDockerControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="17" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisDockerControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDockerControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="18" tqparent_class="18" fileExt=".java" fileName="KisToolControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="18" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Interface KisToolControllerInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisToolControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="21" tqparent_class="21" fileExt=".java" fileName="void" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="21" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Void&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Void ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="22" tqparent_class="22" fileExt=".java" fileName="QWidget * " >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="22" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QWidget * &amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QWidget * ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="301" tqparent_class="301" fileExt=".java" fileName="enumCursorStyle" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="301" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumCursorStyle&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumCursorStyle ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="307" tqparent_class="307" fileExt=".java" fileName="enumDockerStyle" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="307" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumDockerStyle&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumDockerStyle ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="311" tqparent_class="311" fileExt=".java" fileName="enumRotationDirection" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="311" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumRotationDirection&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumRotationDirection ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="314" tqparent_class="314" fileExt=".java" fileName="CompositeOp" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="314" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CompositeOp&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CompositeOp ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="342" tqparent_class="342" fileExt=".java" fileName="enumImgTypeDeprecated" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="342" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumImgTypeDeprecated&amp;#010;// The following enum is kept to allow the loading of old documents in KisDoc::loadImage// XXX: Before Koffice 1.4 release, remove. We do not need backwards compatibility since// we have no installed base." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumImgTypeDeprecated ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="358" tqparent_class="358" fileExt=".java" fileName="enumPaintStyles" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="358" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumPaintStyles&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumPaintStyles ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="361" tqparent_class="361" fileExt=".java" fileName="PIXELTYPE" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="361" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class PIXELTYPE&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public PIXELTYPE ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="363" tqparent_class="363" fileExt=".java" fileName="KisSharedPtrVector" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="363" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSharedPtrVector&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSharedPtrVector ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="370" tag="operation_370" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="371" tag="operation_371" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="372" tag="operation_372" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param it &amp;#010;@return typename super.test " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="377" tag="operation_377" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param first &amp;#010;@param last &amp;#010;@return typename super.test4 " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="366" field_type="2097266" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QValueVector = new QValueVector ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QValueVector to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QValueVector from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="365" tqparent_class="365" fileExt=".java" fileName="QValueVector" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="365" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QValueVector&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QValueVector ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="366" field_type="2147483647" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisSharedPtrVector = new KisSharedPtrVector ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisSharedPtrVector to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisSharedPtrVector from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="366" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="366" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisSelection" id="369" tqparent_class="369" fileExt=".java" fileName="super" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisSelection;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="369" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Super&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Super ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="typename super" id="374" tqparent_class="374" fileExt=".java" fileName="iterator" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package typename super;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="374" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Iterator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Iterator ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="typename super" id="376" tqparent_class="376" fileExt=".java" fileName="test" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package typename super;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="376" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Test&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Test ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="typename super" id="378" tqparent_class="378" fileExt=".java" fileName="test2" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package typename super;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="378" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Test2&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Test2 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="typename super" id="380" tqparent_class="380" fileExt=".java" fileName="test3" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package typename super;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="380" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Test3&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Test3 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="typename super" id="382" tqparent_class="382" fileExt=".java" fileName="test4" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package typename super;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="382" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Test4&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Test4 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="383" tqparent_class="383" fileExt=".java" fileName="KisImage" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_INT32;&amp;#010;import KisStrategyColorSpaceSP;&amp;#010;import KisProfileSP;&amp;#010;import QString;&amp;#010;import bool;&amp;#010;import enumFilterType;&amp;#010;import KURL;&amp;#010;import KoUnit.Unit;&amp;#010;import vKisLayerSP;&amp;#010;import KisPaintDeviceSP;&amp;#010;import KisLayerSP;&amp;#010;import Q_UINT32;&amp;#010;import QRect;&amp;#010;import KisImageSP;&amp;#010;import KisBackgroundSP;&amp;#010;import KisGuideMgr;&amp;#010;import QPixmap;&amp;#010;import vKisAnnotationSP;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="383" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisImage&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1135" tag="tblock_0" canDelete="false" indentLevel="1" text="private KoCommandHistory* m_undoHistory;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1136" tag="tblock_2" canDelete="false" indentLevel="1" text="private KURL m_uri;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1137" tag="tblock_5" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_8" canDelete="false" indentLevel="1" text="private QString m_description;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1140" tag="tblock_14" canDelete="false" indentLevel="1" text="private Q_INT32 m_width;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1141" tag="tblock_17" canDelete="false" indentLevel="1" text="private Q_INT32 m_height;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1142" tag="tblock_20" canDelete="false" indentLevel="1" text="private double m_xres;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1143" tag="tblock_23" canDelete="false" indentLevel="1" text="private double m_yres;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1144" tag="tblock_26" canDelete="false" indentLevel="1" text="private KoUnit.Unit m_unit;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1145" tag="tblock_29" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1146" tag="tblock_32" canDelete="false" indentLevel="1" text="private boolean m_dirty;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1147" tag="tblock_35" canDelete="false" indentLevel="1" text="private QRect m_dirtyRect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1148" tag="tblock_38" canDelete="false" indentLevel="1" text="private KisBackgroundSP m_bkg;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1149" tag="tblock_41" canDelete="false" indentLevel="1" text="private KisLayerSP m_projection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1150" tag="tblock_44" canDelete="false" indentLevel="1" text="private vKisLayerSP m_layers;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1151" tag="tblock_47" canDelete="false" indentLevel="1" text="private vKisLayerSP m_layerStack;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1152" tag="tblock_50" canDelete="false" indentLevel="1" text="private KisLayerSP m_activeLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1154" tag="tblock_53" canDelete="false" indentLevel="1" text="private KisNameServer* m_nserver;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1155" tag="tblock_56" canDelete="false" indentLevel="1" text="private KisUndoAdapter* m_adapter;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1156" tag="tblock_59" canDelete="false" indentLevel="1" text="private KisGuideMgr m_guides;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1157" tag="tblock_62" canDelete="false" indentLevel="1" text="private DCOPObject* m_dcop;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1158" tag="tblock_65" canDelete="false" indentLevel="1" text="private QPixmap m_pixmap;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1159" tag="tblock_68" canDelete="false" indentLevel="1" text="private vKisAnnotationSP m_annotations;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisImage ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1135" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1135" text="return m_undoHistory;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_undoHistory&amp;#010;&amp;#010;@return the value of m_undoHistory" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1135" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1135" text="m_undoHistory = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_undoHistory&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1136" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1136" text="return m_uri;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_uri&amp;#010;&amp;#010;@return the value of m_uri" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1136" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1136" text="m_uri = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_uri&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1137" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1137" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1137" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1137" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1138" text="return m_description;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_description&amp;#010;&amp;#010;@return the value of m_description" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1138" text="m_description = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_description&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1139" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1139" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1140" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1140" text="return m_width;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_width&amp;#010;&amp;#010;@return the value of m_width" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1140" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1140" text="m_width = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_width&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1141" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1141" text="return m_height;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_height&amp;#010;&amp;#010;@return the value of m_height" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1141" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1141" text="m_height = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_height&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1142" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1142" text="return m_xres;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_xres&amp;#010;&amp;#010;@return the value of m_xres" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1142" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1142" text="m_xres = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_xres&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1143" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1143" text="return m_yres;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_yres&amp;#010;&amp;#010;@return the value of m_yres" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1143" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1143" text="m_yres = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_yres&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1144" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1144" text="return m_unit;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_unit&amp;#010;&amp;#010;@return the value of m_unit" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1144" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1144" text="m_unit = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_unit&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1145" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1145" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1145" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1145" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1146" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1146" text="return m_dirty;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirty&amp;#010;&amp;#010;@return the value of m_dirty" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1146" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1146" text="m_dirty = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirty&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1147" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1147" text="return m_dirtyRect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirtyRect&amp;#010;&amp;#010;@return the value of m_dirtyRect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1147" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1147" text="m_dirtyRect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirtyRect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1148" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1148" text="return m_bkg;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_bkg&amp;#010;&amp;#010;@return the value of m_bkg" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1148" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1148" text="m_bkg = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_bkg&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1149" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1149" text="return m_projection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_projection&amp;#010;&amp;#010;@return the value of m_projection" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1149" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1149" text="m_projection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_projection&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1150" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1150" text="return m_layers;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_layers&amp;#010;&amp;#010;@return the value of m_layers" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1150" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1150" text="m_layers = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_layers&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1151" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1151" text="return m_layerStack;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_layerStack&amp;#010;&amp;#010;@return the value of m_layerStack" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1151" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1151" text="m_layerStack = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_layerStack&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1152" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1152" text="return m_activeLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_activeLayer&amp;#010;&amp;#010;@return the value of m_activeLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1152" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1152" text="m_activeLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_activeLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1154" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1154" text="return m_nserver;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_nserver&amp;#010;&amp;#010;@return the value of m_nserver" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1154" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1154" text="m_nserver = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_nserver&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1155" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1155" text="return m_adapter;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_adapter&amp;#010;&amp;#010;@return the value of m_adapter" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1155" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1155" text="m_adapter = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_adapter&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1156" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1156" text="return m_guides;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_guides&amp;#010;&amp;#010;@return the value of m_guides" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1156" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1156" text="m_guides = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_guides&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1157" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1157" text="return m_dcop;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dcop&amp;#010;&amp;#010;@return the value of m_dcop" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1157" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1157" text="m_dcop = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dcop&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1158" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1158" text="return m_pixmap;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pixmap&amp;#010;&amp;#010;@return the value of m_pixmap" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1158" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1158" text="m_pixmap = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pixmap&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1159" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1159" text="return m_annotations;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_annotations&amp;#010;&amp;#010;@return the value of m_annotations" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1159" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1159" text="m_annotations = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_annotations&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="967" tag="operation_967" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param undoAdapter &amp;#010;@param width &amp;#010;@param height &amp;#010;@param colorStrategy &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="973" tag="operation_973" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="976" tag="operation_976" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="977" tag="operation_977" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return DCOPObject* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="979" tag="operation_979" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Composite the specified tile onto the projection layer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="984" tag="operation_984" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="/// Paint the specified rect onto the painter, adjusting the colors using the/// given profile." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="993" tag="operation_993" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="994" tag="operation_994" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="996" tag="operation_996" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="997" tag="operation_997" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param description &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="999" tag="operation_999" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1000" tag="operation_1000" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@param h &amp;#010;@param cropLayers &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1004" tag="operation_1004" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@param cropLayers &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1007" tag="operation_1007" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param m_progress &amp;#010;@param ftype &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1012" tag="operation_1012" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param angle &amp;#010;@param m_progress &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1015" tag="operation_1015" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param angleX &amp;#010;@param angleY &amp;#010;@param m_progress &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1019" tag="operation_1019" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dstColorStrategy &amp;#010;@param dstProfile &amp;#010;@param renderingIntent &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1023" tag="operation_1023" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Get the profile associated with this image" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1024" tag="operation_1024" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Set the profile associated with this image" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1027" tag="operation_1027" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param history &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1030" tag="operation_1030" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisStrategyColorSpaceSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1031" tag="operation_1031" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KURL " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1033" tag="operation_1033" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param uri &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1036" tag="operation_1036" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KoUnit.Unit " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1039" tag="operation_1039" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param u &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1042" tag="operation_1042" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Resolution of the image == XXX: per inch?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1043" tag="operation_1043" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1044" tag="operation_1044" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xres &amp;#010;@param yres &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1047" tag="operation_1047" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1048" tag="operation_1048" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1049" tag="operation_1049" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1050" tag="operation_1050" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return vKisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1053" tag="operation_1053" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Get the active painting device" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1054" tag="operation_1054" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1057" tag="operation_1057" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1059" tag="operation_1059" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param n &amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1061" tag="operation_1061" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1064" tag="operation_1064" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1066" tag="operation_1066" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param npos &amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1068" tag="operation_1068" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param position &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1071" tag="operation_1071" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1073" tag="operation_1073" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1075" tag="operation_1075" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1077" tag="operation_1077" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1079" tag="operation_1079" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1081" tag="operation_1081" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param position &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1084" tag="operation_1084" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1085" tag="operation_1085" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1086" tag="operation_1086" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1087" tag="operation_1087" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Merge all visible layers and discard hidden ones." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1088" tag="operation_1088" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1089" tag="operation_1089" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1090" tag="operation_1090" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Merge the specified layer with the layer&amp;#010;below this layer, remove the specified layer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1092" tag="operation_1092" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1093" tag="operation_1093" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1094" tag="operation_1094" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param width &amp;#010;@param height &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1099" tag="operation_1099" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rc &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1101" tag="operation_1101" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1102" tag="operation_1102" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisUndoAdapter* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1103" tag="operation_1103" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisGuideMgr* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1105" tag="operation_1105" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1107" tag="operation_1107" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1109" tag="operation_1109" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1111" tag="operation_1111" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1113" tag="operation_1113" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@param rc &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1116" tag="operation_1116" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1118" tag="operation_1118" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1122" tag="operation_1122" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1124" tag="operation_1124" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1125" tag="operation_1125" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1126" tag="operation_1126" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs &amp;#010;@return KisImage&amp; " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1129" tag="operation_1129" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param adapter &amp;#010;@param width &amp;#010;@param height &amp;#010;@param colorStrategy &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="961" field_type="5177425" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QObject = new QObject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QObject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QObject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="964" field_type="2097192" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1135" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1135" tag="tblock_0" canDelete="false" indentLevel="1" text="private KoCommandHistory* m_undoHistory;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1135" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1135" text="return m_undoHistory;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_undoHistory&amp;#010;&amp;#010;@return the value of m_undoHistory" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1135" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1135" text="m_undoHistory = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_undoHistory&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1136" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1136" tag="tblock_2" canDelete="false" indentLevel="1" text="private KURL m_uri;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1136" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1136" text="return m_uri;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_uri&amp;#010;&amp;#010;@return the value of m_uri" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1136" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1136" text="m_uri = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_uri&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1137" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1137" tag="tblock_5" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1137" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1137" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1137" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1137" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1138" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1138" tag="tblock_8" canDelete="false" indentLevel="1" text="private QString m_description;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1138" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1138" text="return m_description;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_description&amp;#010;&amp;#010;@return the value of m_description" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1138" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1138" text="m_description = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_description&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1139" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1139" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1139" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1139" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1139" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1139" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1140" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1140" tag="tblock_14" canDelete="false" indentLevel="1" text="private Q_INT32 m_width;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1140" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1140" text="return m_width;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_width&amp;#010;&amp;#010;@return the value of m_width" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1140" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1140" text="m_width = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_width&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1141" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1141" tag="tblock_17" canDelete="false" indentLevel="1" text="private Q_INT32 m_height;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1141" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1141" text="return m_height;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_height&amp;#010;&amp;#010;@return the value of m_height" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1141" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1141" text="m_height = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_height&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1142" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1142" tag="tblock_20" canDelete="false" indentLevel="1" text="private double m_xres;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1142" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1142" text="return m_xres;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_xres&amp;#010;&amp;#010;@return the value of m_xres" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1142" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1142" text="m_xres = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_xres&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1143" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1143" tag="tblock_23" canDelete="false" indentLevel="1" text="private double m_yres;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1143" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1143" text="return m_yres;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_yres&amp;#010;&amp;#010;@return the value of m_yres" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1143" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1143" text="m_yres = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_yres&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1144" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1144" tag="tblock_26" canDelete="false" indentLevel="1" text="private KoUnit.Unit m_unit;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1144" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1144" text="return m_unit;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_unit&amp;#010;&amp;#010;@return the value of m_unit" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1144" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1144" text="m_unit = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_unit&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1145" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1145" tag="tblock_29" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1145" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1145" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1145" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1145" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1146" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1146" tag="tblock_32" canDelete="false" indentLevel="1" text="private boolean m_dirty;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1146" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1146" text="return m_dirty;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirty&amp;#010;&amp;#010;@return the value of m_dirty" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1146" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1146" text="m_dirty = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirty&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1147" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1147" tag="tblock_35" canDelete="false" indentLevel="1" text="private QRect m_dirtyRect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1147" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1147" text="return m_dirtyRect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirtyRect&amp;#010;&amp;#010;@return the value of m_dirtyRect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1147" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1147" text="m_dirtyRect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirtyRect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1148" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1148" tag="tblock_38" canDelete="false" indentLevel="1" text="private KisBackgroundSP m_bkg;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1148" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1148" text="return m_bkg;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_bkg&amp;#010;&amp;#010;@return the value of m_bkg" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1148" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1148" text="m_bkg = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_bkg&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1149" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1149" tag="tblock_41" canDelete="false" indentLevel="1" text="private KisLayerSP m_projection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1149" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1149" text="return m_projection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_projection&amp;#010;&amp;#010;@return the value of m_projection" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1149" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1149" text="m_projection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_projection&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1150" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1150" tag="tblock_44" canDelete="false" indentLevel="1" text="private vKisLayerSP m_layers;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1150" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1150" text="return m_layers;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_layers&amp;#010;&amp;#010;@return the value of m_layers" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1150" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1150" text="m_layers = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_layers&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1151" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1151" tag="tblock_47" canDelete="false" indentLevel="1" text="private vKisLayerSP m_layerStack;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1151" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1151" text="return m_layerStack;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_layerStack&amp;#010;&amp;#010;@return the value of m_layerStack" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1151" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1151" text="m_layerStack = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_layerStack&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1152" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1152" tag="tblock_50" canDelete="false" indentLevel="1" text="private KisLayerSP m_activeLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1152" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1152" text="return m_activeLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_activeLayer&amp;#010;&amp;#010;@return the value of m_activeLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1152" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1152" text="m_activeLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_activeLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1154" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1154" tag="tblock_53" canDelete="false" indentLevel="1" text="private KisNameServer* m_nserver;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1154" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1154" text="return m_nserver;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_nserver&amp;#010;&amp;#010;@return the value of m_nserver" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1154" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1154" text="m_nserver = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_nserver&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1155" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1155" tag="tblock_56" canDelete="false" indentLevel="1" text="private KisUndoAdapter* m_adapter;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1155" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1155" text="return m_adapter;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_adapter&amp;#010;&amp;#010;@return the value of m_adapter" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1155" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1155" text="m_adapter = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_adapter&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1156" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1156" tag="tblock_59" canDelete="false" indentLevel="1" text="private KisGuideMgr m_guides;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1156" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1156" text="return m_guides;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_guides&amp;#010;&amp;#010;@return the value of m_guides" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1156" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1156" text="m_guides = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_guides&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1157" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1157" tag="tblock_62" canDelete="false" indentLevel="1" text="private DCOPObject* m_dcop;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1157" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1157" text="return m_dcop;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dcop&amp;#010;&amp;#010;@return the value of m_dcop" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1157" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1157" text="m_dcop = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dcop&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1158" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1158" tag="tblock_65" canDelete="false" indentLevel="1" text="private QPixmap m_pixmap;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1158" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1158" text="return m_pixmap;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pixmap&amp;#010;&amp;#010;@return the value of m_pixmap" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1158" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1158" text="m_pixmap = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pixmap&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1159" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1159" tag="tblock_68" canDelete="false" indentLevel="1" text="private vKisAnnotationSP m_annotations;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1159" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1159" text="return m_annotations;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_annotations&amp;#010;&amp;#010;@return the value of m_annotations" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1159" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1159" text="m_annotations = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_annotations&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="384" tqparent_class="384" fileExt=".java" fileName="KisImageSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="384" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisImageSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisImageSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="385" tqparent_class="385" fileExt=".java" fileName="vKisImageSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="385" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisImageSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisImageSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="386" tqparent_class="386" fileExt=".java" fileName="vKisImageSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="386" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisImageSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisImageSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="387" tqparent_class="387" fileExt=".java" fileName="vKisImageSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="387" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisImageSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisImageSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="388" tqparent_class="388" fileExt=".java" fileName="KisPaintDevice" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisStrategyColorSpaceSP;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import QRect;&amp;#010;import KisProfileSP;&amp;#010;import QImage;&amp;#010;import QString;&amp;#010;import QUANTUM;&amp;#010;import KisPixel;&amp;#010;import KisPixelRO;&amp;#010;import CompositeOp;&amp;#010;import enumFilterType;&amp;#010;import KisRectIteratorPixel;&amp;#010;import KisHLineIteratorPixel;&amp;#010;import KisVLineIteratorPixel;&amp;#010;import KisSelectionSP;&amp;#010;import KisPaintDeviceSP;&amp;#010;import Q_INT8;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="388" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintDevice&amp;#010;Class modelled on QPaintDevice." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1627" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisImage* m_owner;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1628" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisDataManager* m_datamanager;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1629" tag="tblock_5" canDelete="false" indentLevel="1" text="private Q_INT32 m_x;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1630" tag="tblock_8" canDelete="false" indentLevel="1" text="private Q_INT32 m_y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1631" tag="tblock_11" canDelete="false" indentLevel="1" text="private boolean m_visible;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1632" tag="tblock_14" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1633" tag="tblock_17" canDelete="false" indentLevel="1" text="private CompositeOp m_compositeOp;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1634" tag="tblock_20" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1635" tag="tblock_23" canDelete="false" indentLevel="1" text="private Q_INT32 m_pixelSize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1636" tag="tblock_26" canDelete="false" indentLevel="1" text="private Q_INT32 m_nChannels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1637" tag="tblock_29" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_32" canDelete="false" indentLevel="1" text="private boolean m_hasSelection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_35" canDelete="false" indentLevel="1" text="private KisSelectionSP m_selection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintDevice ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1627" text="return m_owner;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_owner&amp;#010;&amp;#010;@return the value of m_owner" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1627" text="m_owner = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_owner&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1628" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1628" text="return m_datamanager;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_datamanager&amp;#010;&amp;#010;@return the value of m_datamanager" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1628" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1628" text="m_datamanager = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_datamanager&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1629" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1629" text="return m_x;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_x&amp;#010;&amp;#010;@return the value of m_x" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1629" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1629" text="m_x = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_x&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1630" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1630" text="return m_y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_y&amp;#010;&amp;#010;@return the value of m_y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1630" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1630" text="m_y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1631" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1631" text="return m_visible;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_visible&amp;#010;&amp;#010;@return the value of m_visible" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1631" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1631" text="m_visible = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_visible&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1632" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1632" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1632" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1632" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1633" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1633" text="return m_compositeOp;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1633" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1633" text="m_compositeOp = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1634" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1634" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1634" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1634" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1635" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1635" text="return m_pixelSize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1635" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1635" text="m_pixelSize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1636" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1636" text="return m_nChannels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_nChannels&amp;#010;&amp;#010;@return the value of m_nChannels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1636" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1636" text="m_nChannels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_nChannels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1637" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1637" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1637" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1637" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1647" text="return m_hasSelection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1647" text="m_hasSelection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1648" text="return m_selection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1648" text="m_selection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1439" tag="operation_1439" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colorStrategy &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1442" tag="operation_1442" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param colorStrategy &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1447" tag="operation_1447" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rhs &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1450" tag="operation_1450" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1451" tag="operation_1451" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisRenderInterface" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1453" tag="operation_1453" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1455" tag="operation_1455" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1456" tag="operation_1456" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1459" tag="operation_1459" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1461" tag="operation_1461" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@param x &amp;#010;@param y &amp;#010;@return KNamedCommand* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1466" tag="operation_1466" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return const bool " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1468" tag="operation_1468" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1470" tag="operation_1470" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1473" tag="operation_1473" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pt &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1475" tag="operation_1475" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Retrieve the bounds of the paint device. The size is not exact,&amp;#010;but may be larger if the underlying datamanager works that way.&amp;#010;For instance, the tiled datamanager keeps the extent to the nearest&amp;#010;multiple of 64." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1480" tag="operation_1480" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1481" tag="operation_1481" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the exact bounds of this paint device. This may be very slow,&amp;#010;especially on larger paint devices because it does a linear scanline search." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1486" tag="operation_1486" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1487" tag="operation_1487" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1492" tag="operation_1492" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1494" tag="operation_1494" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return Q_UINT8* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1499" tag="operation_1499" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1505" tag="operation_1505" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text=" Converts the paint device to a different colorspace" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1509" tag="operation_1509" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Fill this paint device with the data from img;" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1512" tag="operation_1512" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Create an RGBA QImage from a rectangle in the paint device.&amp;#010;&amp;#010;x, y left-top point of the rect of pixels&amp;#010;w, h width and height in pixels&amp;#010;profile RGB profile to use in conversion. May be 0, in which&amp;#010;case it's up to the colour strategy to choose a profile (most&amp;#010;like sRGB)." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1518" tag="operation_1518" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Create an RGBA QImage from a rectangle in the paint device.&amp;#010;&amp;#010;The dimensions is so that it takes what is currently on screen. relies on the image() to return an image.&amp;#010;profile RGB profile to use in conversion. May be 0, in which&amp;#010;case it's up to the colour strategy to choose a profile (most&amp;#010;like sRGB)." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1520" tag="operation_1520" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1521" tag="operation_1521" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1523" tag="operation_1523" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Fill c and opacity with the values found at x and y.&amp;#010;The color values will be transformed from the profile of&amp;#010; this paint device to the display profile.&amp;#010;&amp;#010;@return true if the operation was succesful." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1529" tag="operation_1529" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the specified pixel to the specified color. Note that this&amp;#010;bypasses KisPainter. the PaintDevice is here used as an equivalent&amp;#010;to QImage, not QPixmap. This means that this is not undoable; also,&amp;#010;there is no compositing with an existing value at this location.&amp;#010;&amp;#010; The color values will be transformed from the display profile to&amp;#010; the paint device profile.&amp;#010;&amp;#010;@return true if the operation was succesful" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1534" tag="operation_1534" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return a KisPixel wrapper around these bytes. If there are not enough&amp;#010;bytes, bad things will happen. XXX: use vectors?" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1536" tag="operation_1536" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param bytes &amp;#010;@return KisPixelRO " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1539" tag="operation_1539" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1540" tag="operation_1540" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisStrategyColorSpaceSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1541" tag="operation_1541" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return the icm profile associated with this layer, or&amp;#010;the profile associated with the image if the color space of&amp;#010;this layer is the same as the color space of the image,&amp;#010;or 0." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1542" tag="operation_1542" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the profile associated with this layer to the specified profile&amp;#010;or reset to 0 if the profile does not have the same colorspace signature&amp;#010;as the color model associated with this paint device." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1544" tag="operation_1544" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return CompositeOp " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1545" tag="operation_1545" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param compositeOp &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1547" tag="operation_1547" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1548" tag="operation_1548" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1549" tag="operation_1549" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1551" tag="operation_1551" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param y &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1553" tag="operation_1553" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return the number of bytes a pixel takes" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1554" tag="operation_1554" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Return the number of channels a pixel takes" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1555" tag="operation_1555" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisImage* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1558" tag="operation_1558" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param image &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1560" tag="operation_1560" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param m_progress &amp;#010;@param ftype &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1565" tag="operation_1565" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param angle &amp;#010;@param m_progress &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1568" tag="operation_1568" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param angleX &amp;#010;@param angleY &amp;#010;@param m_progress &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1572" tag="operation_1572" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xscale &amp;#010;@param yscale &amp;#010;@param xshear &amp;#010;@param yshear &amp;#010;@param denominator &amp;#010;@param xtranslate &amp;#010;@param ytranslate &amp;#010;@param m_progress &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1581" tag="operation_1581" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Mirror the device along the X axis" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1582" tag="operation_1582" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Mirror the device along the Y axis" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1583" tag="operation_1583" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisMemento* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1584" tag="operation_1584" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param memento &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1586" tag="operation_1586" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param memento &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1588" tag="operation_1588" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="This function return an iterator which points to the first pixel of an rectangle" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1594" tag="operation_1594" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="This function return an iterator which points to the first pixel of a horizontal line" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1599" tag="operation_1599" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="This function return an iterator which points to the first pixel of a vertical line" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1604" tag="operation_1604" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the current selection or create one if this layers hasn't got a selection yet." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1605" tag="operation_1605" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the specified selection object as the active selection for this layer" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1607" tag="operation_1607" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Adds the specified selection to the currently active selection for this layer" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1609" tag="operation_1609" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Subtracts the specified selection from the currently active selection for this layer" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1611" tag="operation_1611" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Whether there is a valid selection for this layer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1612" tag="operation_1612" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Removes the current selection for this layer." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1613" tag="operation_1613" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1615" tag="operation_1615" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1617" tag="operation_1617" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param percentage &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1620" tag="operation_1620" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1621" tag="operation_1621" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1622" tag="operation_1622" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1624" tag="operation_1624" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisPaintDevice&amp; " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1638" tag="operation_1638" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1641" tag="operation_1641" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1644" tag="operation_1644" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1433" field_type="1096849528" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QObject = new QObject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QObject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QObject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1436" field_type="6619252" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1627" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1627" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisImage* m_owner;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1627" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1627" text="return m_owner;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_owner&amp;#010;&amp;#010;@return the value of m_owner" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1627" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1627" text="m_owner = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_owner&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1628" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1628" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisDataManager* m_datamanager;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1628" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1628" text="return m_datamanager;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_datamanager&amp;#010;&amp;#010;@return the value of m_datamanager" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1628" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1628" text="m_datamanager = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_datamanager&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1629" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1629" tag="tblock_5" canDelete="false" indentLevel="1" text="private Q_INT32 m_x;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1629" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1629" text="return m_x;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_x&amp;#010;&amp;#010;@return the value of m_x" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1629" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1629" text="m_x = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_x&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1630" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1630" tag="tblock_8" canDelete="false" indentLevel="1" text="private Q_INT32 m_y;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1630" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1630" text="return m_y;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_y&amp;#010;&amp;#010;@return the value of m_y" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1630" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1630" text="m_y = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_y&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1631" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1631" tag="tblock_11" canDelete="false" indentLevel="1" text="private boolean m_visible;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1631" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1631" text="return m_visible;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_visible&amp;#010;&amp;#010;@return the value of m_visible" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1631" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1631" text="m_visible = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_visible&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1632" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1632" tag="tblock_14" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1632" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1632" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1632" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1632" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1633" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1633" tag="tblock_17" canDelete="false" indentLevel="1" text="private CompositeOp m_compositeOp;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1633" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1633" text="return m_compositeOp;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1633" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1633" text="m_compositeOp = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Operation used to composite this layer with the layers _under_ this layer" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1634" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1634" tag="tblock_20" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1634" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1634" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1634" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1634" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1635" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Cached for quick access" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1635" tag="tblock_23" canDelete="false" indentLevel="1" text="private Q_INT32 m_pixelSize;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1635" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1635" text="return m_pixelSize;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1635" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1635" text="m_pixelSize = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Cached for quick access" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1636" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1636" tag="tblock_26" canDelete="false" indentLevel="1" text="private Q_INT32 m_nChannels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1636" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1636" text="return m_nChannels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_nChannels&amp;#010;&amp;#010;@return the value of m_nChannels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1636" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1636" text="m_nChannels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_nChannels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1637" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1637" tag="tblock_29" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1637" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1637" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1637" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1637" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1647" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Whether there is a selection valid for this layer" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1647" tag="tblock_32" canDelete="false" indentLevel="1" text="private boolean m_hasSelection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1647" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1647" text="return m_hasSelection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1647" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1647" text="m_hasSelection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Whether there is a selection valid for this layer" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1648" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1648" tag="tblock_35" canDelete="false" indentLevel="1" text="private KisSelectionSP m_selection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1648" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1648" text="return m_selection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1648" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1648" text="m_selection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1649" field_type="6357102" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisSelection = new KisSelection ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisSelection to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisSelection from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="389" tqparent_class="389" fileExt=".java" fileName="KisPaintDeviceSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="389" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintDeviceSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintDeviceSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="390" tqparent_class="390" fileExt=".java" fileName="vKisPaintDeviceSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="390" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisPaintDeviceSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisPaintDeviceSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="391" tqparent_class="391" fileExt=".java" fileName="vKisPaintDeviceSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="391" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisPaintDeviceSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisPaintDeviceSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="392" tqparent_class="392" fileExt=".java" fileName="vKisPaintDeviceSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="392" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisPaintDeviceSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisPaintDeviceSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="393" tqparent_class="393" fileExt=".java" fileName="KisLayer" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="393" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLayer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLayer ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="394" tqparent_class="394" fileExt=".java" fileName="KisLayerSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="394" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLayerSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLayerSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="395" tqparent_class="395" fileExt=".java" fileName="vKisLayerSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="395" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisLayerSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisLayerSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="396" tqparent_class="396" fileExt=".java" fileName="vKisLayerSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="396" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisLayerSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisLayerSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="397" tqparent_class="397" fileExt=".java" fileName="vKisLayerSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="397" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisLayerSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisLayerSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="398" tqparent_class="398" fileExt=".java" fileName="KisSelection" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisPaintDeviceSP;&amp;#010;import QColor;&amp;#010;import QImage;&amp;#010;import QRect;&amp;#010;import KisColorSpaceAlphaSP;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="398" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSelection&amp;#010;KisSelection contains a byte-map representation of a layer, where&amp;#010;the value of a byte signifies whether a corresponding pixel is selected, or not.&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1671" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDeviceSP m_parentLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1672" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisColorSpaceAlphaSP m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1673" tag="tblock_5" canDelete="false" indentLevel="1" text="private QColor m_tqmaskColor;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSelection ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1671" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1671" text="return m_parentLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_parentLayer&amp;#010;&amp;#010;@return the value of m_parentLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1671" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1671" text="m_parentLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_parentLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1672" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1672" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1672" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1672" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1673" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1673" text="return m_tqmaskColor;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqmaskColor&amp;#010;&amp;#010;@return the value of m_tqmaskColor" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1673" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1673" text="m_tqmaskColor = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqmaskColor&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1652" tag="operation_1652" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1655" tag="operation_1655" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param layer &amp;#010;@param name &amp;#010;@param c &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1659" tag="operation_1659" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1660" tag="operation_1660" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// // Returns selectedness, or 0 if invalid coordinates// QUANTUM selected(Q_INT32 x, Q_INT32 y);// // void setSelected(Q_INT32 x, Q_INT32 y, QUANTUM s);" />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1661" tag="operation_1661" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1663" tag="operation_1663" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1665" tag="operation_1665" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param r &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1667" tag="operation_1667" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Keep the selection but set the tqmask to color c// Note: it is intentional to deep-copy the color// since the selection will want to own its own copy." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1670" tag="operation_1670" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QRect " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1649" field_type="49" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisPaintDevice = new KisPaintDevice ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisPaintDevice to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisPaintDevice from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1649" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1649" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1671" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1671" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDeviceSP m_parentLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1671" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1671" text="return m_parentLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_parentLayer&amp;#010;&amp;#010;@return the value of m_parentLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1671" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1671" text="m_parentLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_parentLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1672" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1672" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisColorSpaceAlphaSP m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1672" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1672" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1672" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1672" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1673" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1673" tag="tblock_5" canDelete="false" indentLevel="1" text="private QColor m_tqmaskColor;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1673" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1673" text="return m_tqmaskColor;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqmaskColor&amp;#010;&amp;#010;@return the value of m_tqmaskColor" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1673" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1673" text="m_tqmaskColor = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqmaskColor&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="399" tqparent_class="399" fileExt=".java" fileName="KisSelectionSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="399" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSelectionSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSelectionSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="400" tqparent_class="400" fileExt=".java" fileName="vKisSelectionSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="400" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisSelectionSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisSelectionSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="401" tqparent_class="401" fileExt=".java" fileName="vKisSelectionSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="401" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisSelectionSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisSelectionSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="402" tqparent_class="402" fileExt=".java" fileName="vKisSelectionSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="402" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisSelectionSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisSelectionSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="403" tqparent_class="403" fileExt=".java" fileName="KisBackground" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="403" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBackground&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBackground ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="404" tqparent_class="404" fileExt=".java" fileName="KisBackgroundSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="404" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBackgroundSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBackgroundSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="405" tqparent_class="405" fileExt=".java" fileName="KisHistogram" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="405" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHistogram&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHistogram ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="406" tqparent_class="406" fileExt=".java" fileName="KisHistogramSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="406" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHistogramSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHistogramSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="407" tqparent_class="407" fileExt=".java" fileName="vKisHistogramSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="407" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisHistogramSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisHistogramSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="408" tqparent_class="408" fileExt=".java" fileName="vKisHistogramSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="408" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisHistogramSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisHistogramSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="409" tqparent_class="409" fileExt=".java" fileName="vKisHistogramSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="409" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisHistogramSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisHistogramSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="410" tqparent_class="410" fileExt=".java" fileName="KisPaintOp" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="410" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintOp&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintOp ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="411" tqparent_class="411" fileExt=".java" fileName="KisPaintOpSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="411" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintOpSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintOpSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="412" tqparent_class="412" fileExt=".java" fileName="KisPaintOpFactory" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="412" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintOpFactory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintOpFactory ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="413" tqparent_class="413" fileExt=".java" fileName="KisPaintOpFactorySP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="413" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintOpFactorySP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintOpFactorySP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="414" tqparent_class="414" fileExt=".java" fileName="KisToolFactory" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="414" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisToolFactory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisToolFactory ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="415" tqparent_class="415" fileExt=".java" fileName="KisToolFactorySP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="415" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisToolFactorySP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisToolFactorySP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="416" tqparent_class="416" fileExt=".java" fileName="KisPluginFactory" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="416" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPluginFactory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPluginFactory ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="417" tqparent_class="417" fileExt=".java" fileName="KisPluginFactorySP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="417" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPluginFactorySP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPluginFactorySP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="418" tqparent_class="418" fileExt=".java" fileName="KisTool" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="418" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTool ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="419" tqparent_class="419" fileExt=".java" fileName="KisToolSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="419" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisToolSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisToolSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="420" tqparent_class="420" fileExt=".java" fileName="vKisTool" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="420" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisTool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisTool ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="421" tqparent_class="421" fileExt=".java" fileName="vKisTool_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="421" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisTool_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisTool_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="422" tqparent_class="422" fileExt=".java" fileName="vKisTool_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="422" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisTool_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisTool_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="423" tqparent_class="423" fileExt=".java" fileName="KisDataManager" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_UINT32;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import Q_UINT8;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="423" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDataManager&amp;#010;// Change the following two lines to switch (at compiletime) to another datamanager/**&amp;#010;KisDataManager defines the interface that modules responsible for&amp;#010;storing and retrieving data must inmplement. Data modules, like&amp;#010;the tile manager, are responsible for:&amp;#010;&amp;#010;* Storing undo/redo data&amp;#010;* Offering ordererd and unordered iterators over rects of pixels&amp;#010;* (eventually) efficiently loading and saving data in a format&amp;#010;that may allow deferred loading.&amp;#010;&amp;#010;A datamanager knows nothing about the type of pixel data except&amp;#010;how many Q_UINT8's a single pixel takes." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDataManager ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1352" tag="operation_1352" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pixelSize &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1354" tag="operation_1354" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dm &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1357" tag="operation_1357" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisMemento* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1360" tag="operation_1360" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param memento &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1362" tag="operation_1362" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param memento &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1364" tag="operation_1364" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1367" tag="operation_1367" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param store &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1369" tag="operation_1369" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_UINT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1370" tag="operation_1370" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1376" tag="operation_1376" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1381" tag="operation_1381" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param rect &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1383" tag="operation_1383" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@param def &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1390" tag="operation_1390" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@param def &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1397" tag="operation_1397" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param dx &amp;#010;@param dy &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1406" tag="operation_1406" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@return Q_UINT8* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1409" tag="operation_1409" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param data &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1413" tag="operation_1413" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return Q_UINT8* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1418" tag="operation_1418" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param data &amp;#010;@param x &amp;#010;@param y &amp;#010;@param w &amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1349" field_type="6619252" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisTiledDataManager = new KisTiledDataManager ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisTiledDataManager to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisTiledDataManager from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="424" tqparent_class="424" fileExt=".java" fileName="KisDataManagerSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="424" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDataManagerSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDataManagerSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="425" tqparent_class="425" fileExt=".java" fileName="vKisSegments" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="425" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisSegments&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisSegments ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="426" tqparent_class="426" fileExt=".java" fileName="KisStrategyColorSpace" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="426" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisStrategyColorSpace&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisStrategyColorSpace ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="427" tqparent_class="427" fileExt=".java" fileName="KisStrategyColorSpaceSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="427" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisStrategyColorSpaceSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisStrategyColorSpaceSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="428" tqparent_class="428" fileExt=".java" fileName="KisStrategyColorSpaceMap" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="428" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisStrategyColorSpaceMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisStrategyColorSpaceMap ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="429" tqparent_class="429" fileExt=".java" fileName="KisGuide" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Qt.Qt::Orientation;&amp;#010;import bool;&amp;#010;import QPixmap;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="429" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGuide&amp;#010;Kivio - Visual Modelling and Flowcharting&amp;#010;Copyright (C) 2000-2001 theKompany.com &amp; Dave Marotti&amp;#010;Copyright (C) 2002 Patrick Julien &lt;freak@codepimps.org>&amp;#010;&amp;#010;This program is free software; you can redistribute it and/or&amp;#010;modify it under the terms of the GNU General Public License&amp;#010;as published by the Free Software Foundation; either version 2&amp;#010;of the License, or (at your option) any later version.&amp;#010;&amp;#010;This program is distributed in the hope that it will be useful,&amp;#010;but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010;GNU General Public License for more details.&amp;#010;&amp;#010;You should have received a copy of the GNU General Public License&amp;#010;along with this program; if not, write to the Free Software&amp;#010;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="684" tag="tblock_0" canDelete="false" indentLevel="1" text="public double pos;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="686" tag="tblock_2" canDelete="false" indentLevel="1" text="public QPixmap buffer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="687" tag="tblock_5" canDelete="false" indentLevel="1" text="public boolean hasBuffer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="688" tag="tblock_8" canDelete="false" indentLevel="1" text="public boolean selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="689" tag="tblock_11" canDelete="false" indentLevel="1" text="public Qt.Qt::Orientation orient;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGuide ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="684" text="return pos;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of pos&amp;#010;&amp;#010;@return the value of pos" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="684" text="pos = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of pos&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="686" text="return buffer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of buffer&amp;#010;&amp;#010;@return the value of buffer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="686" text="buffer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of buffer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="687" text="return hasBuffer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of hasBuffer&amp;#010;&amp;#010;@return the value of hasBuffer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="687" text="hasBuffer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of hasBuffer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="688" text="return selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of selected&amp;#010;&amp;#010;@return the value of selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="688" text="selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="689" text="return orient;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of orient&amp;#010;&amp;#010;@return the value of orient" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="689" text="orient = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of orient&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="676" tag="operation_676" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param o &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="680" tag="operation_680" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="681" tag="operation_681" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Qt.Qt::Orientation " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="682" tag="operation_682" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="683" tag="operation_683" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="673" field_type="5439563" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="684" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="684" tag="tblock_0" canDelete="false" indentLevel="1" text="public double pos;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="684" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="684" text="return pos;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of pos&amp;#010;&amp;#010;@return the value of pos" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="684" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="684" text="pos = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of pos&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="686" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="686" tag="tblock_2" canDelete="false" indentLevel="1" text="public QPixmap buffer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="686" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="686" text="return buffer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of buffer&amp;#010;&amp;#010;@return the value of buffer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="686" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="686" text="buffer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of buffer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="687" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="687" tag="tblock_5" canDelete="false" indentLevel="1" text="public boolean hasBuffer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="687" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="687" text="return hasBuffer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of hasBuffer&amp;#010;&amp;#010;@return the value of hasBuffer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="687" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="687" text="hasBuffer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of hasBuffer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="688" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="688" tag="tblock_8" canDelete="false" indentLevel="1" text="public boolean selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="688" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="688" text="return selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of selected&amp;#010;&amp;#010;@return the value of selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="688" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="688" text="selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="689" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="689" tag="tblock_11" canDelete="false" indentLevel="1" text="public Qt.Qt::Orientation orient;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="689" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="689" text="return orient;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of orient&amp;#010;&amp;#010;@return the value of orient" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="689" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="689" text="orient = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of orient&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="430" tqparent_class="430" fileExt=".java" fileName="KisGuideSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="430" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGuideSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGuideSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="431" tqparent_class="431" fileExt=".java" fileName="KisAlphaMask" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="431" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAlphaMask&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAlphaMask ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="432" tqparent_class="432" fileExt=".java" fileName="KisAlphaMaskSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="432" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAlphaMaskSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAlphaMaskSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="433" tqparent_class="433" fileExt=".java" fileName="KisColorSpaceAlpha" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="433" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisColorSpaceAlpha&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisColorSpaceAlpha ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="434" tqparent_class="434" fileExt=".java" fileName="KisColorSpaceAlphaSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="434" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisColorSpaceAlphaSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisColorSpaceAlphaSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="435" tqparent_class="435" fileExt=".java" fileName="KisFilter" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="435" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilter ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="436" tqparent_class="436" fileExt=".java" fileName="KisFilterSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="436" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="437" tqparent_class="437" fileExt=".java" fileName="KisProfile" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_UINT32;&amp;#010;import bool;&amp;#010;import QImage;&amp;#010;import icColorSpaceSignature;&amp;#010;import icProfileClassSignature;&amp;#010;import QString;&amp;#010;import cmsHPROFILE;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="437" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProfile&amp;#010; kis_profile.h - part of Krayon&amp;#010;&amp;#010; Copyright (c) 2000 Matthias Elter &lt;elter@kde.org>&amp;#010; 2004 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="949" tag="tblock_0" canDelete="false" indentLevel="1" text="private cmsHPROFILE m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="950" tag="tblock_2" canDelete="false" indentLevel="1" text="private icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="951" tag="tblock_5" canDelete="false" indentLevel="1" text="private icProfileClassSignature m_deviceClass;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="952" tag="tblock_8" canDelete="false" indentLevel="1" text="private QString m_productName;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="953" tag="tblock_11" canDelete="false" indentLevel="1" text="private QString m_productDescription;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="954" tag="tblock_14" canDelete="false" indentLevel="1" text="private QString m_productInfo;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="955" tag="tblock_17" canDelete="false" indentLevel="1" text="private QString m_manufacturer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="956" tag="tblock_20" canDelete="false" indentLevel="1" text="private Q_UINT32 m_lcmsColorType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProfile ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="949" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="949" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="949" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="949" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="950" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="950" text="return m_colorSpaceSignature;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorSpaceSignature&amp;#010;&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="950" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="950" text="m_colorSpaceSignature = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorSpaceSignature&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="951" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="951" text="return m_deviceClass;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_deviceClass&amp;#010;&amp;#010;@return the value of m_deviceClass" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="951" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="951" text="m_deviceClass = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_deviceClass&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="952" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="952" text="return m_productName;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productName&amp;#010;&amp;#010;@return the value of m_productName" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="952" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="952" text="m_productName = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productName&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="953" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="953" text="return m_productDescription;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productDescription&amp;#010;&amp;#010;@return the value of m_productDescription" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="953" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="953" text="m_productDescription = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productDescription&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="954" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="954" text="return m_productInfo;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productInfo&amp;#010;&amp;#010;@return the value of m_productInfo" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="954" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="954" text="m_productInfo = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productInfo&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="955" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="955" text="return m_manufacturer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_manufacturer&amp;#010;&amp;#010;@return the value of m_manufacturer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="955" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="955" text="m_manufacturer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_manufacturer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="956" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="956" text="return m_lcmsColorType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_lcmsColorType&amp;#010;&amp;#010;@return the value of m_lcmsColorType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="956" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="956" text="m_lcmsColorType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_lcmsColorType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="923" tag="operation_923" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param colorType &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="926" tag="operation_926" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param file &amp;#010;@param colorType &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="929" tag="operation_929" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@param colorType &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="934" tag="operation_934" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="935" tag="operation_935" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="936" tag="operation_936" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="937" tag="operation_937" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QImage " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="938" tag="operation_938" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return icColorSpaceSignature " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="940" tag="operation_940" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return icProfileClassSignature " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="942" tag="operation_942" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="943" tag="operation_943" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="944" tag="operation_944" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="945" tag="operation_945" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="946" tag="operation_946" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return cmsHPROFILE " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="947" tag="operation_947" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_UINT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="948" tag="operation_948" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="917" field_type="2097267" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisResource = new KisResource ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisResource to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisResource from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="920" field_type="7536741" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="949" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="949" tag="tblock_0" canDelete="false" indentLevel="1" text="private cmsHPROFILE m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="949" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="949" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="949" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="949" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="950" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="950" tag="tblock_2" canDelete="false" indentLevel="1" text="private icColorSpaceSignature m_colorSpaceSignature;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="950" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="950" text="return m_colorSpaceSignature;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorSpaceSignature&amp;#010;&amp;#010;@return the value of m_colorSpaceSignature" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="950" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="950" text="m_colorSpaceSignature = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorSpaceSignature&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="951" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="951" tag="tblock_5" canDelete="false" indentLevel="1" text="private icProfileClassSignature m_deviceClass;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="951" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="951" text="return m_deviceClass;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_deviceClass&amp;#010;&amp;#010;@return the value of m_deviceClass" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="951" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="951" text="m_deviceClass = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_deviceClass&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="952" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="952" tag="tblock_8" canDelete="false" indentLevel="1" text="private QString m_productName;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="952" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="952" text="return m_productName;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productName&amp;#010;&amp;#010;@return the value of m_productName" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="952" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="952" text="m_productName = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productName&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="953" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="953" tag="tblock_11" canDelete="false" indentLevel="1" text="private QString m_productDescription;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="953" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="953" text="return m_productDescription;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productDescription&amp;#010;&amp;#010;@return the value of m_productDescription" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="953" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="953" text="m_productDescription = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productDescription&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="954" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="954" tag="tblock_14" canDelete="false" indentLevel="1" text="private QString m_productInfo;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="954" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="954" text="return m_productInfo;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_productInfo&amp;#010;&amp;#010;@return the value of m_productInfo" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="954" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="954" text="m_productInfo = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_productInfo&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="955" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="955" tag="tblock_17" canDelete="false" indentLevel="1" text="private QString m_manufacturer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="955" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="955" text="return m_manufacturer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_manufacturer&amp;#010;&amp;#010;@return the value of m_manufacturer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="955" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="955" text="m_manufacturer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_manufacturer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="956" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="956" tag="tblock_20" canDelete="false" indentLevel="1" text="private Q_UINT32 m_lcmsColorType;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="956" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="956" text="return m_lcmsColorType;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_lcmsColorType&amp;#010;&amp;#010;@return the value of m_lcmsColorType" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="956" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="956" text="m_lcmsColorType = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_lcmsColorType&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="438" tqparent_class="438" fileExt=".java" fileName="KisProfileSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="438" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProfileSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="439" tqparent_class="439" fileExt=".java" fileName="vKisProfileSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="439" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisProfileSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisProfileSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="440" tqparent_class="440" fileExt=".java" fileName="KisChannelInfo" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="440" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisChannelInfo&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisChannelInfo ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="441" tqparent_class="441" fileExt=".java" fileName="KisChannelInfoSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="441" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisChannelInfoSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisChannelInfoSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="442" tqparent_class="442" fileExt=".java" fileName="vKisChannelInfoSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="442" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisChannelInfoSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisChannelInfoSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="443" tqparent_class="443" fileExt=".java" fileName="vKisChannelInfoSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="443" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisChannelInfoSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisChannelInfoSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="444" tqparent_class="444" fileExt=".java" fileName="vKisChannelInfoSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="444" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisChannelInfoSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisChannelInfoSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="445" tqparent_class="445" fileExt=".java" fileName="KisAnnotation" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QString;&amp;#010;import QByteArray;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="445" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAnnotation&amp;#010;This file is part of the KDE project&amp;#010;&amp;#010;Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010;This program is free software; you can redistribute it and/or modify&amp;#010;it under the terms of the GNU General Public License as published by&amp;#010;the Free Software Foundation; either version 2 of the License, or&amp;#010;(at your option) any later version.&amp;#010;&amp;#010;This program is distributed in the hope that it will be useful,&amp;#010;but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010;GNU General Public License for more details.&amp;#010;&amp;#010;You should have received a copy of the GNU General Public License&amp;#010;along with this program; if not, write to the Free Software&amp;#010;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;An data extension mechanism for Chalk.&amp;#010;&amp;#010;An annotation can be of something like a QByteArray or a QString op a more specific&amp;#010;datatype that can be attached to an image (or maybe later, if needed, to a layer)&amp;#010;and contains data that must be associated with an image for purposes of import/export." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="670" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_type;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="671" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_description;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="672" tag="tblock_5" canDelete="false" indentLevel="1" text="private QByteArray m_annotation;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAnnotation ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="670" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="670" text="return m_type;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_type&amp;#010;&amp;#010;@return the value of m_type" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="670" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="670" text="m_type = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_type&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="671" text="return m_description;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_description&amp;#010;&amp;#010;@return the value of m_description" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="671" text="m_description = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_description&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="672" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="672" text="return m_annotation;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_annotation&amp;#010;&amp;#010;@return the value of m_annotation" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="672" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="672" text="m_annotation = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_annotation&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="659" tag="operation_659" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param type &amp;#010;@param description &amp;#010;@param data &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="665" tag="operation_665" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString&amp; " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="667" tag="operation_667" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString&amp; " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="668" tag="operation_668" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QByteArray&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="656" field_type="7209061" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="670" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="670" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_type;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="670" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="670" text="return m_type;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_type&amp;#010;&amp;#010;@return the value of m_type" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="670" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="670" text="m_type = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_type&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="671" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="671" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_description;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="671" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="671" text="return m_description;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_description&amp;#010;&amp;#010;@return the value of m_description" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="671" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="671" text="m_description = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_description&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="672" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="672" tag="tblock_5" canDelete="false" indentLevel="1" text="private QByteArray m_annotation;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="672" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="672" text="return m_annotation;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_annotation&amp;#010;&amp;#010;@return the value of m_annotation" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="672" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="672" text="m_annotation = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_annotation&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="446" tqparent_class="446" fileExt=".java" fileName="KisAnnotationSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="446" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAnnotationSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAnnotationSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="447" tqparent_class="447" fileExt=".java" fileName="vKisAnnotationSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="447" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisAnnotationSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisAnnotationSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="448" tqparent_class="448" fileExt=".java" fileName="vKisAnnotationSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="448" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisAnnotationSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisAnnotationSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="449" tqparent_class="449" fileExt=".java" fileName="vKisAnnotationSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="449" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisAnnotationSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisAnnotationSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="450" tqparent_class="450" fileExt=".java" fileName="KisFileFormat" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="450" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFileFormat&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFileFormat ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="451" tqparent_class="451" fileExt=".java" fileName="KisFileFormatSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="451" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFileFormatSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFileFormatSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="452" tqparent_class="452" fileExt=".java" fileName="vKisFileFormatSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="452" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisFileFormatSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisFileFormatSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="453" tqparent_class="453" fileExt=".java" fileName="vKisFileFormatSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="453" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisFileFormatSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisFileFormatSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="454" tqparent_class="454" fileExt=".java" fileName="vKisFileFormatSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="454" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisFileFormatSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisFileFormatSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="455" tqparent_class="455" fileExt=".java" fileName=TQWIDGET_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="455" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QWidget&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QWidget ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="456" tqparent_class="456" fileExt=".java" fileName="KisRect" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="456" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRect&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRect ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="457" tqparent_class="457" fileExt=".java" fileName="KisPoint" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="457" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPoint&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPoint ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="461" tqparent_class="461" fileExt=".java" fileName="QWidget*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="461" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QWidget*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QWidget* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="463" tqparent_class="463" fileExt=".java" fileName="Q_INT32" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="463" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT32 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="475" tqparent_class="475" fileExt=".java" fileName="QRect" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="475" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QRect&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QRect ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="476" tqparent_class="476" fileExt=".java" fileName="const QRect&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="476" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QRect&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QRect&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="494" tqparent_class="494" fileExt=".java" fileName="const KisRect&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="494" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisRect&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisRect&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="497" tqparent_class="497" fileExt=".java" fileName=TQPOINT_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="497" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPoint&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPoint ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="498" tqparent_class="498" fileExt=".java" fileName="const QPoint&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="498" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QPoint&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QPoint&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="501" tqparent_class="501" fileExt=".java" fileName="const KisPoint&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="501" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisPoint&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisPoint&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="508" tqparent_class="508" fileExt=".java" fileName="Q_INT32*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="508" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT32*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT32* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="523" tqparent_class="523" fileExt=".java" fileName="const KisCanvasControllerInterface&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="523" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisCanvasControllerInterface&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisCanvasControllerInterface&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="527" tqparent_class="527" fileExt=".java" fileName="KisCanvasControllerInterface&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="527" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasControllerInterface&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasControllerInterface&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="528" tqparent_class="528" fileExt=".java" fileName="KisPainterControllerInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisImageSP;&amp;#010;import QString;&amp;#010;import QColor;&amp;#010;import KisFilterSP;&amp;#010;import KisIDList;&amp;#010;import QCursor;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="528" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPainterControllerInterface&amp;#010;The canvas subject is the subset of operations that are directy available to&amp;#010;tools." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPainterControllerInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="580" tag="operation_580" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="581" tag="operation_581" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="582" tag="operation_582" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="585" tag="operation_585" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param observer &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="587" tag="operation_587" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="588" tag="operation_588" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisImageSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="589" tag="operation_589" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="590" tag="operation_590" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QColor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="592" tag="operation_592" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="595" tag="operation_595" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QColor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="596" tag="operation_596" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param c &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="598" tag="operation_598" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisBrush* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="600" tag="operation_600" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisPattern* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="602" tag="operation_602" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisGradient* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="604" tag="operation_604" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="605" tag="operation_605" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisUndoAdapter* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="607" tag="operation_607" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisCanvasControllerInterface* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="609" tag="operation_609" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisToolControllerInterface* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="611" tag="operation_611" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KoDocument* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="613" tag="operation_613" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisProgressDisplayInterface* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="615" tag="operation_615" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisSelectionManager* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="617" tag="operation_617" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisFilterRegistry* " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="619" tag="operation_619" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@return KisFilterSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="621" tag="operation_621" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisIDList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="622" tag="operation_622" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return QCursor " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="625" tag="operation_625" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="628" tag="operation_628" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisCanvasSubject&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="529" tqparent_class="529" fileExt=".java" fileName="KisCanvasObserver" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="529" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasObserver&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasObserver ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="530" tag="operation_530" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="531" tag="operation_531" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="532" tag="operation_532" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param subject &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="535" tag="operation_535" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="538" tag="operation_538" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisCanvasObserver&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="533" tqparent_class="533" fileExt=".java" fileName="KisCanvasSubject*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="533" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasSubject*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasSubject* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="536" tqparent_class="536" fileExt=".java" fileName="const KisCanvasObserver&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="536" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisCanvasObserver&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisCanvasObserver&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="540" tqparent_class="540" fileExt=".java" fileName="KisCanvasObserver&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="540" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasObserver&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasObserver&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="541" tqparent_class="541" fileExt=".java" fileName="KisID" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QString;&amp;#010;import bool;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="541" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisID&amp;#010;This file is part of the KDE project&amp;#010;&amp;#010;Copyright (c) 2005 Boudewijn Rempt &lt;boud@valdyas.org>&amp;#010;&amp;#010;This program is free software; you can redistribute it and/or modify&amp;#010;it under the terms of the GNU General Public License as published by&amp;#010;the Free Software Foundation; either version 2 of the License, or&amp;#010;(at your option) any later version.&amp;#010;&amp;#010;This program is distributed in the hope that it will be useful,&amp;#010;but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010;GNU General Public License for more details.&amp;#010;&amp;#010;You should have received a copy of the GNU General Public License&amp;#010;along with this program; if not, write to the Free Software&amp;#010;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;Chalk has a large number of extensible resources. Think:&amp;#010;&amp;#010;- Brushes&amp;#010;- Palettes&amp;#010;- Patterns&amp;#010;- Gradients&amp;#010;- Color models&amp;#010;- Filters&amp;#010;- Composition operations&amp;#010;- Paint operations&amp;#010;- Tools&amp;#010;- Docker tabs&amp;#010;&amp;#010;and more...&amp;#010;&amp;#010;Many of these resources are stored in KisGenericRegistry-based&amp;#010;registries. If we store these resources with a descriptive string&amp;#010;as a key use the same string in our UI, then our UI will not be&amp;#010;localizable, because the identifications of particular resources&amp;#010;will be stored in files, and those files need to be exchangeable.&amp;#010;&amp;#010;So, instead we use and ID class that couples an identification&amp;#010;string that will be the same across all languages, an i18n-able&amp;#010;string that will be used in comboboxes and that has a fast equality&amp;#010;operator to make it well suited for use as key in a registry map.&amp;#010;&amp;#010;That last bit has not been solved yet.&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_id;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="569" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisID ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="568" text="return m_id;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_id&amp;#010;&amp;#010;@return the value of m_id" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="568" text="m_id = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_id&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="569" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="569" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="569" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="569" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="546" tag="operation_546" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="547" tag="operation_547" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="552" tag="operation_552" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="553" tag="operation_553" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="554" tag="operation_554" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="559" tag="operation_559" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="562" tag="operation_562" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="565" tag="operation_565" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@param &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="543" field_type="7471201" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KShared = new KShared ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KShared to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KShared from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="568" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="568" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_id;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="568" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="568" text="return m_id;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_id&amp;#010;&amp;#010;@return the value of m_id" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="568" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="568" text="m_id = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_id&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="569" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="569" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="569" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="569" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="569" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="569" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="542" tqparent_class="542" fileExt=".java" fileName="KShared" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="542" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KShared&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KShared ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="543" field_type="2" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisID = new KisID ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisID to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisID from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="543" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="543" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="656" field_type="2097220" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisAnnotation = new KisAnnotation ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisAnnotation to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisAnnotation from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="656" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="656" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="673" field_type="7602291" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisGuide = new KisGuide ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisGuide to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisGuide from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="673" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="673" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="920" field_type="2687008" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisProfile = new KisProfile ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisProfile to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisProfile from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="920" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="920" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="964" field_type="2097192" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisImage = new KisImage ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisImage to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisImage from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="964" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="964" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1436" field_type="7274528" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisPaintDevice = new KisPaintDevice ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisPaintDevice to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisPaintDevice from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1436" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1436" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="548" tqparent_class="548" fileExt=".java" fileName=TQSTRING_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="548" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QString&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QString ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="549" tqparent_class="549" fileExt=".java" fileName="const QString&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="549" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QString&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QString&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="555" tqparent_class="555" fileExt=".java" fileName="const KisID&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="555" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisID&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisID&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="558" tqparent_class="558" fileExt=".java" fileName="bool" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="558" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Bool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Bool ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="570" tqparent_class="570" fileExt=".java" fileName="KisIDList" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="570" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisIDList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisIDList ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="571" tqparent_class="571" fileExt=".java" fileName="KoDocument" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="571" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoDocument&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoDocument ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="572" tqparent_class="572" fileExt=".java" fileName="KisBrush" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="572" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBrush&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBrush ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="573" tqparent_class="573" fileExt=".java" fileName="KisGradient" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="573" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGradient&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGradient ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="574" tqparent_class="574" fileExt=".java" fileName="KisPattern" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="574" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPattern&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPattern ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="575" tqparent_class="575" fileExt=".java" fileName="KisUndoAdapter" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="575" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisUndoAdapter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisUndoAdapter ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="576" tqparent_class="576" fileExt=".java" fileName="KisProgressDisplayInterface" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="576" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProgressDisplayInterface&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProgressDisplayInterface ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="577" tqparent_class="577" fileExt=".java" fileName="KisSelectionManager" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisImageSP;&amp;#010;import KisLayerSP;&amp;#010;import KisSelectionSP;&amp;#010;import QPtrList;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="577" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSelectionManager&amp;#010;The selection manager is responsible selections&amp;#010;and the clipboard." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1834" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisView* m_parent;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1835" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisDoc* m_doc;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1836" tag="tblock_5" canDelete="false" indentLevel="1" text="private KisSelectionSP m_previousSelection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1838" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisClipboard* m_clipboard;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1839" tag="tblock_11" canDelete="false" indentLevel="1" text="private KAction* m_copy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1840" tag="tblock_14" canDelete="false" indentLevel="1" text="private KAction* m_cut;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1841" tag="tblock_17" canDelete="false" indentLevel="1" text="private KAction* m_paste;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1842" tag="tblock_20" canDelete="false" indentLevel="1" text="private KAction* m_selectAll;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1843" tag="tblock_23" canDelete="false" indentLevel="1" text="private KAction* m_deselect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1844" tag="tblock_26" canDelete="false" indentLevel="1" text="private KAction* m_clear;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1845" tag="tblock_29" canDelete="false" indentLevel="1" text="private KAction* m_reselect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1846" tag="tblock_32" canDelete="false" indentLevel="1" text="private KAction* m_invert;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1847" tag="tblock_35" canDelete="false" indentLevel="1" text="private KAction* m_toNewLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1848" tag="tblock_38" canDelete="false" indentLevel="1" text="private KAction* m_feather;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1849" tag="tblock_41" canDelete="false" indentLevel="1" text="private KAction* m_border;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1850" tag="tblock_44" canDelete="false" indentLevel="1" text="private KAction* m_expand;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1851" tag="tblock_47" canDelete="false" indentLevel="1" text="private KAction* m_smooth;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1852" tag="tblock_50" canDelete="false" indentLevel="1" text="private KAction* m_contract;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1853" tag="tblock_53" canDelete="false" indentLevel="1" text="private KAction* m_grow;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1854" tag="tblock_56" canDelete="false" indentLevel="1" text="private KAction* m_similar;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1855" tag="tblock_59" canDelete="false" indentLevel="1" text="private KAction* m_transform;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1856" tag="tblock_62" canDelete="false" indentLevel="1" text="private KAction* m_load;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1857" tag="tblock_65" canDelete="false" indentLevel="1" text="private KAction* m_save;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1859" tag="tblock_68" canDelete="false" indentLevel="1" text="private QPtrList m_pluginActions;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSelectionManager ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1834" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1834" text="return m_parent;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_parent&amp;#010;&amp;#010;@return the value of m_parent" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1834" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1834" text="m_parent = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_parent&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1835" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1835" text="return m_doc;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_doc&amp;#010;&amp;#010;@return the value of m_doc" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1835" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1835" text="m_doc = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_doc&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1836" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1836" text="return m_previousSelection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_previousSelection&amp;#010;&amp;#010;@return the value of m_previousSelection" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1836" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1836" text="m_previousSelection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_previousSelection&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1838" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1838" text="return m_clipboard;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_clipboard&amp;#010;&amp;#010;@return the value of m_clipboard" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1838" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1838" text="m_clipboard = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_clipboard&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1839" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1839" text="return m_copy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_copy&amp;#010;&amp;#010;@return the value of m_copy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1839" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1839" text="m_copy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_copy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1840" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1840" text="return m_cut;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_cut&amp;#010;&amp;#010;@return the value of m_cut" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1840" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1840" text="m_cut = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_cut&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1841" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1841" text="return m_paste;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paste&amp;#010;&amp;#010;@return the value of m_paste" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1841" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1841" text="m_paste = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paste&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1842" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1842" text="return m_selectAll;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selectAll&amp;#010;&amp;#010;@return the value of m_selectAll" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1842" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1842" text="m_selectAll = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selectAll&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1843" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1843" text="return m_deselect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_deselect&amp;#010;&amp;#010;@return the value of m_deselect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1843" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1843" text="m_deselect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_deselect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1844" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1844" text="return m_clear;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_clear&amp;#010;&amp;#010;@return the value of m_clear" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1844" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1844" text="m_clear = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_clear&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1845" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1845" text="return m_reselect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_reselect&amp;#010;&amp;#010;@return the value of m_reselect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1845" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1845" text="m_reselect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_reselect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1846" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1846" text="return m_invert;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_invert&amp;#010;&amp;#010;@return the value of m_invert" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1846" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1846" text="m_invert = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_invert&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1847" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1847" text="return m_toNewLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toNewLayer&amp;#010;&amp;#010;@return the value of m_toNewLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1847" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1847" text="m_toNewLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toNewLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1848" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1848" text="return m_feather;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_feather&amp;#010;&amp;#010;@return the value of m_feather" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1848" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1848" text="m_feather = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_feather&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1849" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1849" text="return m_border;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_border&amp;#010;&amp;#010;@return the value of m_border" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1849" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1849" text="m_border = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_border&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1850" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1850" text="return m_expand;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_expand&amp;#010;&amp;#010;@return the value of m_expand" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1850" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1850" text="m_expand = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_expand&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1851" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1851" text="return m_smooth;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_smooth&amp;#010;&amp;#010;@return the value of m_smooth" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1851" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1851" text="m_smooth = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_smooth&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1852" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1852" text="return m_contract;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_contract&amp;#010;&amp;#010;@return the value of m_contract" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1852" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1852" text="m_contract = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_contract&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1853" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1853" text="return m_grow;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_grow&amp;#010;&amp;#010;@return the value of m_grow" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1853" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1853" text="m_grow = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_grow&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1854" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1854" text="return m_similar;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_similar&amp;#010;&amp;#010;@return the value of m_similar" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1854" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1854" text="m_similar = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_similar&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1855" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1855" text="return m_transform;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_transform&amp;#010;&amp;#010;@return the value of m_transform" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1855" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1855" text="m_transform = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_transform&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1856" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1856" text="return m_load;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_load&amp;#010;&amp;#010;@return the value of m_load" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1856" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1856" text="m_load = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_load&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1857" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1857" text="return m_save;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_save&amp;#010;&amp;#010;@return the value of m_save" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1857" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1857" text="m_save = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_save&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1859" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1859" text="return m_pluginActions;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pluginActions&amp;#010;&amp;#010;@return the value of m_pluginActions" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1859" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1859" text="m_pluginActions = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pluginActions&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1801" tag="operation_1801" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tqparent &amp;#010;@param doc &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1805" tag="operation_1805" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1806" tag="operation_1806" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param collection &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1808" tag="operation_1808" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param action &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1811" tag="operation_1811" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1812" tag="operation_1812" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1814" tag="operation_1814" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1815" tag="operation_1815" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1816" tag="operation_1816" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1817" tag="operation_1817" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisLayerSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1818" tag="operation_1818" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1819" tag="operation_1819" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1820" tag="operation_1820" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1821" tag="operation_1821" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1822" tag="operation_1822" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1823" tag="operation_1823" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1824" tag="operation_1824" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1825" tag="operation_1825" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1826" tag="operation_1826" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1827" tag="operation_1827" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1828" tag="operation_1828" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1829" tag="operation_1829" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1830" tag="operation_1830" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1831" tag="operation_1831" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1832" tag="operation_1832" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1833" tag="operation_1833" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1798" field_type="7471205" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QObject = new QObject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QObject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QObject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1834" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1834" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisView* m_parent;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1834" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1834" text="return m_parent;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_parent&amp;#010;&amp;#010;@return the value of m_parent" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1834" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1834" text="m_parent = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_parent&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1835" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1835" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisDoc* m_doc;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1835" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1835" text="return m_doc;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_doc&amp;#010;&amp;#010;@return the value of m_doc" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1835" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1835" text="m_doc = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_doc&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1836" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1836" tag="tblock_5" canDelete="false" indentLevel="1" text="private KisSelectionSP m_previousSelection;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1836" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1836" text="return m_previousSelection;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_previousSelection&amp;#010;&amp;#010;@return the value of m_previousSelection" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1836" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1836" text="m_previousSelection = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_previousSelection&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1838" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1838" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisClipboard* m_clipboard;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1838" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1838" text="return m_clipboard;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_clipboard&amp;#010;&amp;#010;@return the value of m_clipboard" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1838" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1838" text="m_clipboard = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_clipboard&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1839" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1839" tag="tblock_11" canDelete="false" indentLevel="1" text="private KAction* m_copy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1839" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1839" text="return m_copy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_copy&amp;#010;&amp;#010;@return the value of m_copy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1839" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1839" text="m_copy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_copy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1840" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1840" tag="tblock_14" canDelete="false" indentLevel="1" text="private KAction* m_cut;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1840" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1840" text="return m_cut;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_cut&amp;#010;&amp;#010;@return the value of m_cut" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1840" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1840" text="m_cut = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_cut&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1841" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1841" tag="tblock_17" canDelete="false" indentLevel="1" text="private KAction* m_paste;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1841" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1841" text="return m_paste;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paste&amp;#010;&amp;#010;@return the value of m_paste" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1841" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1841" text="m_paste = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paste&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1842" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1842" tag="tblock_20" canDelete="false" indentLevel="1" text="private KAction* m_selectAll;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1842" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1842" text="return m_selectAll;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selectAll&amp;#010;&amp;#010;@return the value of m_selectAll" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1842" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1842" text="m_selectAll = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selectAll&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1843" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1843" tag="tblock_23" canDelete="false" indentLevel="1" text="private KAction* m_deselect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1843" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1843" text="return m_deselect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_deselect&amp;#010;&amp;#010;@return the value of m_deselect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1843" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1843" text="m_deselect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_deselect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1844" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1844" tag="tblock_26" canDelete="false" indentLevel="1" text="private KAction* m_clear;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1844" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1844" text="return m_clear;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_clear&amp;#010;&amp;#010;@return the value of m_clear" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1844" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1844" text="m_clear = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_clear&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1845" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1845" tag="tblock_29" canDelete="false" indentLevel="1" text="private KAction* m_reselect;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1845" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1845" text="return m_reselect;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_reselect&amp;#010;&amp;#010;@return the value of m_reselect" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1845" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1845" text="m_reselect = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_reselect&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1846" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1846" tag="tblock_32" canDelete="false" indentLevel="1" text="private KAction* m_invert;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1846" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1846" text="return m_invert;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_invert&amp;#010;&amp;#010;@return the value of m_invert" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1846" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1846" text="m_invert = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_invert&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1847" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1847" tag="tblock_35" canDelete="false" indentLevel="1" text="private KAction* m_toNewLayer;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1847" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1847" text="return m_toNewLayer;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toNewLayer&amp;#010;&amp;#010;@return the value of m_toNewLayer" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1847" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1847" text="m_toNewLayer = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toNewLayer&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1848" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1848" tag="tblock_38" canDelete="false" indentLevel="1" text="private KAction* m_feather;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1848" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1848" text="return m_feather;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_feather&amp;#010;&amp;#010;@return the value of m_feather" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1848" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1848" text="m_feather = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_feather&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1849" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1849" tag="tblock_41" canDelete="false" indentLevel="1" text="private KAction* m_border;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1849" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1849" text="return m_border;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_border&amp;#010;&amp;#010;@return the value of m_border" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1849" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1849" text="m_border = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_border&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1850" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1850" tag="tblock_44" canDelete="false" indentLevel="1" text="private KAction* m_expand;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1850" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1850" text="return m_expand;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_expand&amp;#010;&amp;#010;@return the value of m_expand" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1850" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1850" text="m_expand = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_expand&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1851" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1851" tag="tblock_47" canDelete="false" indentLevel="1" text="private KAction* m_smooth;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1851" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1851" text="return m_smooth;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_smooth&amp;#010;&amp;#010;@return the value of m_smooth" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1851" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1851" text="m_smooth = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_smooth&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1852" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1852" tag="tblock_50" canDelete="false" indentLevel="1" text="private KAction* m_contract;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1852" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1852" text="return m_contract;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_contract&amp;#010;&amp;#010;@return the value of m_contract" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1852" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1852" text="m_contract = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_contract&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1853" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1853" tag="tblock_53" canDelete="false" indentLevel="1" text="private KAction* m_grow;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1853" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1853" text="return m_grow;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_grow&amp;#010;&amp;#010;@return the value of m_grow" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1853" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1853" text="m_grow = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_grow&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1854" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1854" tag="tblock_56" canDelete="false" indentLevel="1" text="private KAction* m_similar;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1854" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1854" text="return m_similar;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_similar&amp;#010;&amp;#010;@return the value of m_similar" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1854" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1854" text="m_similar = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_similar&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1855" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1855" tag="tblock_59" canDelete="false" indentLevel="1" text="private KAction* m_transform;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1855" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1855" text="return m_transform;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_transform&amp;#010;&amp;#010;@return the value of m_transform" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1855" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1855" text="m_transform = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_transform&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1856" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1856" tag="tblock_62" canDelete="false" indentLevel="1" text="private KAction* m_load;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1856" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1856" text="return m_load;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_load&amp;#010;&amp;#010;@return the value of m_load" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1856" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1856" text="m_load = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_load&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1857" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1857" tag="tblock_65" canDelete="false" indentLevel="1" text="private KAction* m_save;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1857" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1857" text="return m_save;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_save&amp;#010;&amp;#010;@return the value of m_save" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1857" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1857" text="m_save = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_save&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1859" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1859" tag="tblock_68" canDelete="false" indentLevel="1" text="private QPtrList m_pluginActions;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1859" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1859" text="return m_pluginActions;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pluginActions&amp;#010;&amp;#010;@return the value of m_pluginActions" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1859" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1859" text="m_pluginActions = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pluginActions&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="578" tqparent_class="578" fileExt=".java" fileName="KisFilterRegistry" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="578" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterRegistry&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterRegistry ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="579" tqparent_class="579" fileExt=".java" fileName="QCursor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="579" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QCursor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QCursor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="583" tqparent_class="583" fileExt=".java" fileName="KisCanvasObserver*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="583" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasObserver*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasObserver* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="591" tqparent_class="591" fileExt=".java" fileName="QColor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="591" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QColor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QColor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="593" tqparent_class="593" fileExt=".java" fileName="const QColor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="593" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QColor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QColor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="599" tqparent_class="599" fileExt=".java" fileName="KisBrush*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="599" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBrush*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBrush* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="601" tqparent_class="601" fileExt=".java" fileName="KisPattern*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="601" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPattern*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPattern* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="603" tqparent_class="603" fileExt=".java" fileName="KisGradient*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="603" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGradient*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGradient* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="606" tqparent_class="606" fileExt=".java" fileName="KisUndoAdapter*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="606" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisUndoAdapter*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisUndoAdapter* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="608" tqparent_class="608" fileExt=".java" fileName="KisCanvasControllerInterface*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="608" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasControllerInterface*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasControllerInterface* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="610" tqparent_class="610" fileExt=".java" fileName="KisToolControllerInterface*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="610" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisToolControllerInterface*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisToolControllerInterface* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="612" tqparent_class="612" fileExt=".java" fileName="KoDocument*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="612" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoDocument*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoDocument* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="614" tqparent_class="614" fileExt=".java" fileName="KisProgressDisplayInterface*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="614" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProgressDisplayInterface*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProgressDisplayInterface* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="616" tqparent_class="616" fileExt=".java" fileName="KisSelectionManager*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="616" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSelectionManager*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSelectionManager* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="618" tqparent_class="618" fileExt=".java" fileName="KisFilterRegistry*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="618" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterRegistry*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterRegistry* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="623" tqparent_class="623" fileExt=".java" fileName="const QCursor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="623" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QCursor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QCursor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="626" tqparent_class="626" fileExt=".java" fileName="const KisCanvasSubject&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="626" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisCanvasSubject&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisCanvasSubject&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="630" tqparent_class="630" fileExt=".java" fileName="KisCanvasSubject&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="630" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisCanvasSubject&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisCanvasSubject&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="631" tqparent_class="631" fileExt=".java" fileName="KisGenericRegistry" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisID;&amp;#010;import bool;&amp;#010;import KisIDList;&amp;#010;import KisGenericRegistry;&amp;#010;import KisGenericRegistry.storageMap;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="631" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGenericRegistry&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="655" tag="tblock_0" canDelete="false" indentLevel="1" text="protected storageMap m_storage;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGenericRegistry ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="655" text="return m_storage;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_storage&amp;#010;&amp;#010;@return the value of m_storage" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="655" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="655" text="m_storage = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_storage&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="634" tag="operation_634" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="635" tag="operation_635" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="636" tag="operation_636" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param item &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="638" tag="operation_638" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@param item &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="641" tag="operation_641" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="643" tag="operation_643" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="645" tag="operation_645" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="647" tag="operation_647" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param id &amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="649" tag="operation_649" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisIDList " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="650" tag="operation_650" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="653" tag="operation_653" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisGenericRegistry " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="655" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="655" tag="tblock_0" canDelete="false" indentLevel="1" text="protected storageMap m_storage;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="655" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="655" text="return m_storage;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_storage&amp;#010;&amp;#010;@return the value of m_storage" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="655" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="655" text="m_storage = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_storage&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisGenericRegistry" id="633" tqparent_class="633" fileExt=".java" fileName="storageMap" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisGenericRegistry;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="633" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class StorageMap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public StorageMap ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="651" tqparent_class="651" fileExt=".java" fileName="const KisGenericRegistry&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="651" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisGenericRegistry&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisGenericRegistry&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="662" tqparent_class="662" fileExt=".java" fileName=TQBYTEARRAY_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="662" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QByteArray&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QByteArray ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="663" tqparent_class="663" fileExt=".java" fileName="const QByteArray&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="663" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QByteArray&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QByteArray&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="666" tqparent_class="666" fileExt=".java" fileName="QString&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="666" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QString&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QString&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="669" tqparent_class="669" fileExt=".java" fileName="QByteArray&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="669" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QByteArray&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QByteArray&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="Qt" id="678" tqparent_class="678" fileExt=".java" fileName="Qt::Orientation" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package Qt;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="678" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Qt::Orientation&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Qt::Orientation ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="685" tqparent_class="685" fileExt=".java" fileName=TQPIXMAP_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="685" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPixmap&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPixmap ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="690" tqparent_class="690" fileExt=".java" fileName="KisGuideMgr" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisGuideSP;&amp;#010;import Qt.Qt::Orientation;&amp;#010;import bool;&amp;#010;import Q_INT32;&amp;#010;import QSize;&amp;#010;import QPixmap;&amp;#010;import KisGuideMgr.vKisGuideSP;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="690" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGuideMgr&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="756" tag="tblock_0" canDelete="false" indentLevel="1" text="private QSize m_size;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="757" tag="tblock_2" canDelete="false" indentLevel="1" text="private QPixmap m_vGuideLines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="758" tag="tblock_5" canDelete="false" indentLevel="1" text="private QPixmap m_hGuideLines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="759" tag="tblock_8" canDelete="false" indentLevel="1" text="private QPixmap m_pattern;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="760" tag="tblock_11" canDelete="false" indentLevel="1" text="private QPixmap m_vGuideLinesSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="761" tag="tblock_14" canDelete="false" indentLevel="1" text="private QPixmap m_hGuideLinesSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="762" tag="tblock_17" canDelete="false" indentLevel="1" text="private QPixmap m_patternSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="763" tag="tblock_20" canDelete="false" indentLevel="1" text="private vKisGuideSP m_lines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="764" tag="tblock_23" canDelete="false" indentLevel="1" text="private vKisGuideSP m_slines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="766" tag="tblock_26" canDelete="false" indentLevel="1" text="static private const char* s_xbm;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="767" tag="tblock_29" canDelete="false" indentLevel="1" text="static private const char* s_xbm_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGuideMgr ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="756" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="756" text="return m_size;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_size&amp;#010;&amp;#010;@return the value of m_size" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="756" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="756" text="m_size = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_size&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="757" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="757" text="return m_vGuideLines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_vGuideLines&amp;#010;&amp;#010;@return the value of m_vGuideLines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="757" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="757" text="m_vGuideLines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_vGuideLines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="758" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="758" text="return m_hGuideLines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hGuideLines&amp;#010;&amp;#010;@return the value of m_hGuideLines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="758" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="758" text="m_hGuideLines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hGuideLines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="759" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="759" text="return m_pattern;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pattern&amp;#010;&amp;#010;@return the value of m_pattern" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="759" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="759" text="m_pattern = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pattern&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="760" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="760" text="return m_vGuideLinesSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_vGuideLinesSelected&amp;#010;&amp;#010;@return the value of m_vGuideLinesSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="760" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="760" text="m_vGuideLinesSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_vGuideLinesSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="761" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="761" text="return m_hGuideLinesSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hGuideLinesSelected&amp;#010;&amp;#010;@return the value of m_hGuideLinesSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="761" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="761" text="m_hGuideLinesSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hGuideLinesSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="762" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="762" text="return m_patternSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_patternSelected&amp;#010;&amp;#010;@return the value of m_patternSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="762" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="762" text="m_patternSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_patternSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="763" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="763" text="return m_lines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_lines&amp;#010;&amp;#010;@return the value of m_lines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="763" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="763" text="m_lines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_lines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="764" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="764" text="return m_slines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_slines&amp;#010;&amp;#010;@return the value of m_slines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="764" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="764" text="m_slines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_slines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="766" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="766" text="return s_xbm;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of s_xbm&amp;#010;&amp;#010;@return the value of s_xbm" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="766" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="766" text="s_xbm = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of s_xbm&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="767" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="767" text="return s_xbm_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of s_xbm_selected&amp;#010;&amp;#010;@return the value of s_xbm_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="767" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="767" text="s_xbm_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of s_xbm_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="694" tag="operation_694" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="695" tag="operation_695" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="696" tag="operation_696" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pos &amp;#010;@param o &amp;#010;@return KisGuideSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="699" tag="operation_699" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="701" tag="operation_701" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param y &amp;#010;@param d &amp;#010;@return KisGuideSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="705" tag="operation_705" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param y &amp;#010;@param d &amp;#010;@return KisGuideSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="708" tag="operation_708" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@param d &amp;#010;@return KisGuideSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="711" tag="operation_711" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="712" tag="operation_712" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="713" tag="operation_713" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param element &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="717" tag="operation_717" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param element &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="720" tag="operation_720" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="722" tag="operation_722" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gd &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="724" tag="operation_724" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="725" tag="operation_725" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="726" tag="operation_726" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="727" tag="operation_727" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="731" tag="operation_731" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="732" tag="operation_732" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@param w &amp;#010;@param xOffset &amp;#010;@param yOffset &amp;#010;@param zoom &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="740" tag="operation_740" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param device &amp;#010;@param w &amp;#010;@param xOffset &amp;#010;@param yOffset &amp;#010;@param zoom &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="746" tag="operation_746" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param d &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="748" tag="operation_748" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param d &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="750" tag="operation_750" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param size &amp;#010;@param vLine &amp;#010;@param hLine &amp;#010;@param linePattern &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="756" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="756" tag="tblock_0" canDelete="false" indentLevel="1" text="private QSize m_size;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="756" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="756" text="return m_size;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_size&amp;#010;&amp;#010;@return the value of m_size" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="756" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="756" text="m_size = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_size&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="757" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="757" tag="tblock_2" canDelete="false" indentLevel="1" text="private QPixmap m_vGuideLines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="757" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="757" text="return m_vGuideLines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_vGuideLines&amp;#010;&amp;#010;@return the value of m_vGuideLines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="757" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="757" text="m_vGuideLines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_vGuideLines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="758" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="758" tag="tblock_5" canDelete="false" indentLevel="1" text="private QPixmap m_hGuideLines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="758" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="758" text="return m_hGuideLines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hGuideLines&amp;#010;&amp;#010;@return the value of m_hGuideLines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="758" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="758" text="m_hGuideLines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hGuideLines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="759" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="759" tag="tblock_8" canDelete="false" indentLevel="1" text="private QPixmap m_pattern;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="759" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="759" text="return m_pattern;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pattern&amp;#010;&amp;#010;@return the value of m_pattern" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="759" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="759" text="m_pattern = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pattern&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="760" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="760" tag="tblock_11" canDelete="false" indentLevel="1" text="private QPixmap m_vGuideLinesSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="760" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="760" text="return m_vGuideLinesSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_vGuideLinesSelected&amp;#010;&amp;#010;@return the value of m_vGuideLinesSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="760" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="760" text="m_vGuideLinesSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_vGuideLinesSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="761" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="761" tag="tblock_14" canDelete="false" indentLevel="1" text="private QPixmap m_hGuideLinesSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="761" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="761" text="return m_hGuideLinesSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hGuideLinesSelected&amp;#010;&amp;#010;@return the value of m_hGuideLinesSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="761" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="761" text="m_hGuideLinesSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hGuideLinesSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="762" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="762" tag="tblock_17" canDelete="false" indentLevel="1" text="private QPixmap m_patternSelected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="762" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="762" text="return m_patternSelected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_patternSelected&amp;#010;&amp;#010;@return the value of m_patternSelected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="762" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="762" text="m_patternSelected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_patternSelected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="763" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="763" tag="tblock_20" canDelete="false" indentLevel="1" text="private vKisGuideSP m_lines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="763" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="763" text="return m_lines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_lines&amp;#010;&amp;#010;@return the value of m_lines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="763" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="763" text="m_lines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_lines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="764" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="764" tag="tblock_23" canDelete="false" indentLevel="1" text="private vKisGuideSP m_slines;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="764" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="764" text="return m_slines;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_slines&amp;#010;&amp;#010;@return the value of m_slines" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="764" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="764" text="m_slines = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_slines&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="766" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="766" tag="tblock_26" canDelete="false" indentLevel="1" text="static private const char* s_xbm;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="766" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="766" text="return s_xbm;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of s_xbm&amp;#010;&amp;#010;@return the value of s_xbm" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="766" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="766" text="s_xbm = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of s_xbm&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="767" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="767" tag="tblock_29" canDelete="false" indentLevel="1" text="static private const char* s_xbm_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="767" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="767" text="return s_xbm_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of s_xbm_selected&amp;#010;&amp;#010;@return the value of s_xbm_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="767" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="767" text="s_xbm_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of s_xbm_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisGuideMgr" id="691" tqparent_class="691" fileExt=".java" fileName="vKisGuideSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisGuideMgr;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="691" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisGuideSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisGuideSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisGuideMgr" id="692" tqparent_class="692" fileExt=".java" fileName="vKisGuideSP_it" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisGuideMgr;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="692" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisGuideSP_it&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisGuideSP_it ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisGuideMgr" id="693" tqparent_class="693" fileExt=".java" fileName="vKisGuideSP_cit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisGuideMgr;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="693" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class VKisGuideSP_cit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public VKisGuideSP_cit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="714" tqparent_class="714" fileExt=".java" fileName="QDomElement" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="714" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QDomElement&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QDomElement ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="715" tqparent_class="715" fileExt=".java" fileName="QDomElement&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="715" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QDomElement&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QDomElement&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="718" tqparent_class="718" fileExt=".java" fileName="const QDomElement&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="718" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QDomElement&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QDomElement&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="728" tqparent_class="728" fileExt=".java" fileName="QSize" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="728" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QSize&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QSize ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="729" tqparent_class="729" fileExt=".java" fileName="const QSize&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="729" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QSize&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QSize&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="733" tqparent_class="733" fileExt=".java" fileName="QPaintDevice" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="733" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPaintDevice&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPaintDevice ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="734" tqparent_class="734" fileExt=".java" fileName="QPaintDevice*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="734" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPaintDevice*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPaintDevice* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="752" tqparent_class="752" fileExt=".java" fileName="QPixmap*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="752" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPixmap*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPixmap* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="765" tqparent_class="765" fileExt=".java" fileName="const char*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="765" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const char*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const char* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="768" tqparent_class="768" fileExt=".java" fileName="enumFilterType" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="768" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class EnumFilterType&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public EnumFilterType ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="776" tqparent_class="776" fileExt=".java" fileName="KisScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="776" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="789" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBoxScaleFilterStrategy = new KisBoxScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="817" tag="tblock_5" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisLanczos3ScaleFilterStrategy = new KisLanczos3ScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="826" tag="tblock_11" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisMitchellScaleFilterStrategy = new KisMitchellScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="789" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="789" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="789" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBoxScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="789" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBoxScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="789" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="817" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="817" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="817" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisLanczos3ScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="817" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisLanczos3ScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="817" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="826" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="826" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="826" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisMitchellScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="826" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisMitchellScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="826" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="777" tag="operation_777" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="778" tag="operation_778" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="779" tag="operation_779" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="782" field_type="7602273" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisSimpleScaleFilterStrategy = new KisSimpleScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisSimpleScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisSimpleScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="782" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="789" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="789" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBoxScaleFilterStrategy = new KisBoxScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="789" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="789" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="789" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBoxScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="789" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBoxScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="789" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="796" field_type="6357106" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisTriangleScaleFilterStrategy = new KisTriangleScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisTriangleScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisTriangleScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="803" field_type="7602208" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBellScaleFilterStrategy = new KisBellScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBellScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBellScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="803" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="810" field_type="6357106" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBSplineScaleFilterStrategy = new KisBSplineScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBSplineScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBSplineScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="817" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="817" tag="tblock_5" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisLanczos3ScaleFilterStrategy = new KisLanczos3ScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="817" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="817" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="817" tag="hblock_tag_8" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisLanczos3ScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="817" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisLanczos3ScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="817" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="826" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="826" tag="tblock_11" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisMitchellScaleFilterStrategy = new KisMitchellScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="826" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="826" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="826" tag="hblock_tag_14" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisMitchellScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="826" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisMitchellScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="826" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="781" tqparent_class="781" fileExt=".java" fileName="KisSimpleScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="781" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSimpleScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="782" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSimpleScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="782" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="782" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="782" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="782" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="782" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="785" tag="operation_785" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="786" tag="operation_786" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="782" field_type="0" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="782" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="782" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="782" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="782" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="782" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="782" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="782" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="788" tqparent_class="788" fileExt=".java" fileName="KisBoxScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="788" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBoxScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBoxScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="792" tag="operation_792" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="793" tag="operation_793" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="789" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="789" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="789" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="795" tqparent_class="795" fileExt=".java" fileName="KisTriangleScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="795" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTriangleScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTriangleScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="799" tag="operation_799" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="800" tag="operation_800" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="796" field_type="6357106" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="796" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="796" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="802" tqparent_class="802" fileExt=".java" fileName="KisBellScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="802" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBellScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="803" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBellScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="803" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="803" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="803" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="803" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="803" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="806" tag="operation_806" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="807" tag="operation_807" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="803" field_type="0" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="803" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="803" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="803" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="803" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="803" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="803" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="803" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="809" tqparent_class="809" fileExt=".java" fileName="KisBSplineScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="809" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBSplineScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBSplineScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="813" tag="operation_813" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="814" tag="operation_814" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="810" field_type="6619252" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="810" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="810" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="816" tqparent_class="816" fileExt=".java" fileName="KisLanczos3ScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="816" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLanczos3ScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLanczos3ScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="820" tag="operation_820" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="821" tag="operation_821" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="823" tag="operation_823" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="817" field_type="6357106" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="817" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="817" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="825" tqparent_class="825" fileExt=".java" fileName="KisMitchellScaleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="825" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisMitchellScaleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="826" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisMitchellScaleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="826" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="826" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="826" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="826" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="826" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="829" tag="operation_829" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="830" tag="operation_830" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="826" field_type="0" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="826" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisScaleFilterStrategy = new KisScaleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="826" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="826" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="826" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="826" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="826" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="826" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="832" tqparent_class="832" fileExt=".java" fileName="KisScaleVisitor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import enumFilterType;&amp;#010;import Q_INT32;&amp;#010;import bool;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="832" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisScaleVisitor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="854" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDevice* m_dev;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="865" tag="tblock_2" canDelete="false" indentLevel="1" text="private CLIST* contrib;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="866" tag="tblock_5" canDelete="false" indentLevel="1" text="private boolean m_cancelRequested;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisScaleVisitor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="854" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="854" text="return m_dev;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dev&amp;#010;&amp;#010;@return the value of m_dev" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="854" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="854" text="m_dev = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dev&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="865" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="865" text="return contrib;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="865" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="865" text="contrib = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="866" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="866" text="return m_cancelRequested;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="866" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="866" text="m_cancelRequested = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="844" tag="operation_844" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="845" tag="operation_845" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="846" tag="operation_846" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dev &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="849" tag="operation_849" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param sx &amp;#010;@param sy &amp;#010;@param m_progress &amp;#010;@param filterType &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="855" tag="operation_855" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="calc_x_contrib()&amp;#010; &amp;#010;Calculates the filter weights for a single target column.&amp;#010;contribX->p must be freed afterwards.&amp;#010;&amp;#010;Returns -1 if error, 0 otherwise." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="867" tag="operation_867" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="834" field_type="7602296" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisProgressSubject = new KisProgressSubject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisProgressSubject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisProgressSubject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="854" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="854" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDevice* m_dev;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="854" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="854" text="return m_dev;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dev&amp;#010;&amp;#010;@return the value of m_dev" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="854" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="854" text="m_dev = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dev&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="865" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="//array of contribution lists" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="865" tag="tblock_2" canDelete="false" indentLevel="1" text="private CLIST* contrib;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="865" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="865" text="return contrib;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="865" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="865" text="contrib = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//array of contribution lists" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="866" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Implement KisProgressSubject" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="866" tag="tblock_5" canDelete="false" indentLevel="1" text="private boolean m_cancelRequested;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="866" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="866" text="return m_cancelRequested;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="866" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="866" text="m_cancelRequested = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="833" tqparent_class="833" fileExt=".java" fileName="KisProgressSubject" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="833" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisProgressSubject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisProgressSubject ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="834" field_type="6357096" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisScaleVisitor = new KisScaleVisitor ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisScaleVisitor to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisScaleVisitor from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="834" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="834" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1319" field_type="6881355" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisTransformVisitor = new KisTransformVisitor ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisTransformVisitor to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisTransformVisitor from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisScaleVisitor" id="837" tqparent_class="837" fileExt=".java" fileName="CONTRIB" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisScaleVisitor;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_INT32;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="837" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CONTRIB&amp;#010;Structs for the image rescaling routine" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="838" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_INT32 m_pixel;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="839" tag="tblock_2" canDelete="false" indentLevel="1" text="public double m_weight;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CONTRIB ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="838" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="838" text="return m_pixel;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pixel&amp;#010;&amp;#010;@return the value of m_pixel" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="838" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="838" text="m_pixel = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pixel&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="839" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="839" text="return m_weight;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_weight&amp;#010;&amp;#010;@return the value of m_weight" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="839" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="839" text="m_weight = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_weight&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="838" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="838" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_INT32 m_pixel;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="838" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="838" text="return m_pixel;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_pixel&amp;#010;&amp;#010;@return the value of m_pixel" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="838" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="838" text="m_pixel = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_pixel&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="839" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="839" tag="tblock_2" canDelete="false" indentLevel="1" text="public double m_weight;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="839" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="839" text="return m_weight;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_weight&amp;#010;&amp;#010;@return the value of m_weight" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="839" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="839" text="m_weight = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_weight&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KisScaleVisitor" id="840" tqparent_class="840" fileExt=".java" fileName="CLIST" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KisScaleVisitor;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_INT32;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="840" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CLIST&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="841" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_INT32 n;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="843" tag="tblock_2" canDelete="false" indentLevel="1" text="public CONTRIB* p;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CLIST ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="841" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="841" text="return n;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="841" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="841" text="n = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="843" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="843" text="return p;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="843" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="843" text="p = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="841" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="//number of contributors" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="841" tag="tblock_0" canDelete="false" indentLevel="1" text="public Q_INT32 n;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="841" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="841" text="return n;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="841" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="841" text="n = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//number of contributors" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="843" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="//pointer to list of contributions" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="843" tag="tblock_2" canDelete="false" indentLevel="1" text="public CONTRIB* p;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="843" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="843" text="return p;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="843" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="843" text="p = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="//pointer to list of contributions" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="842" tqparent_class="842" fileExt=".java" fileName="CONTRIB*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="842" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CONTRIB*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CONTRIB* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="847" tqparent_class="847" fileExt=".java" fileName="KisPaintDevice*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="847" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintDevice*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintDevice* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="856" tqparent_class="856" fileExt=".java" fileName="CLIST*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="856" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CLIST*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CLIST* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="862" tqparent_class="862" fileExt=".java" fileName="KisScaleFilterStrategy*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="862" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisScaleFilterStrategy*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisScaleFilterStrategy* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="868" tqparent_class="868" fileExt=".java" fileName="KisResource" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import bool;&amp;#010;import QImage;&amp;#010;import QString;&amp;#010;import Q_INT32;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="868" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisResource&amp;#010; Copyright (c) 2003 Patrick Julien &lt;freak@codepimps.org>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;The KisResource class provides a representation of Chalk image resources. This&amp;#010;includes, but not limited to, brushes and patterns.&amp;#010;&amp;#010;This replaces the KisKrayon facility that used to be present in Krayon." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="911" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="912" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_filename;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="913" tag="tblock_5" canDelete="false" indentLevel="1" text="private boolean m_dirty;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="914" tag="tblock_8" canDelete="false" indentLevel="1" text="private boolean m_valid;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="915" tag="tblock_11" canDelete="false" indentLevel="1" text="private Q_INT32 m_width;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="916" tag="tblock_14" canDelete="false" indentLevel="1" text="private Q_INT32 m_height;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisResource ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="911" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="911" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="912" text="return m_filename;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_filename&amp;#010;&amp;#010;@return the value of m_filename" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="912" text="m_filename = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_filename&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="913" text="return m_dirty;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirty&amp;#010;&amp;#010;@return the value of m_dirty" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="913" text="m_dirty = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirty&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="914" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="914" text="return m_valid;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_valid&amp;#010;&amp;#010;@return the value of m_valid" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="914" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="914" text="m_valid = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_valid&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="915" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="915" text="return m_width;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_width&amp;#010;&amp;#010;@return the value of m_width" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="915" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="915" text="m_width = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_width&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="916" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="916" text="return m_height;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_height&amp;#010;&amp;#010;@return the value of m_height" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="916" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="916" text="m_height = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_height&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="873" tag="operation_873" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Creates a new KisResource object using @p filename. No file is opened&amp;#010;in the constructor, you have to call loadAsync.&amp;#010;&amp;#010;@param filename the file name to save and load from." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="875" tag="operation_875" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="876" tag="operation_876" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Load this resource asynchronously. The signal loadComplete is emitted when&amp;#010;the resource has been loaded and valid flag is set to true." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="877" tag="operation_877" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Save this resource asynchronously. The signal saveComplete is emitted when&amp;#010;the resource has been saved." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="878" tag="operation_878" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Returns a QImage representing this resource. This image could be null." />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="880" tag="operation_880" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="881" tag="operation_881" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dirt &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="883" tag="operation_883" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="884" tag="operation_884" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param filename &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="886" tag="operation_886" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QString " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="887" tag="operation_887" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param name &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="889" tag="operation_889" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return boolean " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="890" tag="operation_890" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param valid &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="892" tag="operation_892" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="893" tag="operation_893" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return Q_INT32 " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="894" tag="operation_894" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param w &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="896" tag="operation_896" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param h &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="898" tag="operation_898" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param me &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="901" tag="operation_901" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param me &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="903" tag="operation_903" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param me &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="905" tag="operation_905" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="908" tag="operation_908" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return KisResource&amp; " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="870" field_type="7536740" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QObject = new QObject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QObject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QObject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="911" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="911" tag="tblock_0" canDelete="false" indentLevel="1" text="private QString m_name;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="911" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="911" text="return m_name;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_name&amp;#010;&amp;#010;@return the value of m_name" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="911" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="911" text="m_name = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_name&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="912" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="912" tag="tblock_2" canDelete="false" indentLevel="1" text="private QString m_filename;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="912" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="912" text="return m_filename;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_filename&amp;#010;&amp;#010;@return the value of m_filename" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="912" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="912" text="m_filename = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_filename&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="913" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="913" tag="tblock_5" canDelete="false" indentLevel="1" text="private boolean m_dirty;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="913" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="913" text="return m_dirty;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dirty&amp;#010;&amp;#010;@return the value of m_dirty" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="913" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="913" text="m_dirty = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dirty&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="914" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="914" tag="tblock_8" canDelete="false" indentLevel="1" text="private boolean m_valid;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="914" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="914" text="return m_valid;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_valid&amp;#010;&amp;#010;@return the value of m_valid" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="914" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="914" text="m_valid = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_valid&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="915" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="915" tag="tblock_11" canDelete="false" indentLevel="1" text="private Q_INT32 m_width;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="915" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="915" text="return m_width;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_width&amp;#010;&amp;#010;@return the value of m_width" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="915" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="915" text="m_width = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_width&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="916" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="916" tag="tblock_14" canDelete="false" indentLevel="1" text="private Q_INT32 m_height;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="916" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="916" text="return m_height;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_height&amp;#010;&amp;#010;@return the value of m_height" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="916" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="916" text="m_height = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_height&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="917" field_type="6881391" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisProfile = new KisProfile ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisProfile to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisProfile from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="917" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="917" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="869" tqparent_class="869" fileExt=".java" fileName=TQOBJECT_OBJECT_NAME_STRING >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="869" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QObject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QObject ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="870" field_type="2" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisResource = new KisResource ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisResource to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisResource from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="870" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="870" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="961" field_type="2621472" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisImage = new KisImage ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisImage to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisImage from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="961" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="961" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1433" field_type="7274528" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisPaintDevice = new KisPaintDevice ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisPaintDevice to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisPaintDevice from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1433" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1433" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1695" field_type="7536745" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisDockerManager = new KisDockerManager ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisDockerManager to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisDockerManager from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1798" field_type="4980850" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisSelectionManager = new KisSelectionManager ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisSelectionManager to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisSelectionManager from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1798" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1798" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="879" tqparent_class="879" fileExt=".java" fileName="QImage" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="879" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QImage&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QImage ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="899" tqparent_class="899" fileExt=".java" fileName="KisResource*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="899" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisResource*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisResource* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="906" tqparent_class="906" fileExt=".java" fileName="const KisResource&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="906" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisResource&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisResource&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="910" tqparent_class="910" fileExt=".java" fileName="KisResource&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="910" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisResource&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisResource&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="924" tqparent_class="924" fileExt=".java" fileName="Q_UINT32" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="924" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT32&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT32 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="930" tqparent_class="930" fileExt=".java" fileName="cmsHPROFILE" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="930" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class CmsHPROFILE&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public CmsHPROFILE ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="931" tqparent_class="931" fileExt=".java" fileName="const cmsHPROFILE" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="931" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const cmsHPROFILE&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const cmsHPROFILE ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="939" tqparent_class="939" fileExt=".java" fileName="icColorSpaceSignature" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="939" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class IcColorSpaceSignature&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public IcColorSpaceSignature ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="941" tqparent_class="941" fileExt=".java" fileName="icProfileClassSignature" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="941" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class IcProfileClassSignature&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public IcProfileClassSignature ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="957" tqparent_class="957" fileExt=".java" fileName="KoCommandHistory" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="957" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoCommandHistory&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoCommandHistory ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="958" tqparent_class="958" fileExt=".java" fileName="KisNameServer" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="958" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisNameServer&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisNameServer ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="959" tqparent_class="959" fileExt=".java" fileName="KisPainter" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="959" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPainter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPainter ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="960" tqparent_class="960" fileExt=".java" fileName="DCOPObject" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="960" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class DCOPObject&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public DCOPObject ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="974" tqparent_class="974" fileExt=".java" fileName="const KisImage&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="974" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisImage&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisImage&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="978" tqparent_class="978" fileExt=".java" fileName="DCOPObject*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="978" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class DCOPObject*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public DCOPObject* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="989" tqparent_class="989" fileExt=".java" fileName="QPainter" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="989" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPainter&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPainter ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="990" tqparent_class="990" fileExt=".java" fileName="QPainter&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="990" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPainter&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPainter&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1025" tqparent_class="1025" fileExt=".java" fileName="const KisProfileSP&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1025" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisProfileSP&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisProfileSP&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1028" tqparent_class="1028" fileExt=".java" fileName="KoCommandHistory*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1028" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoCommandHistory*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoCommandHistory* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1032" tqparent_class="1032" fileExt=".java" fileName="KURL" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1032" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KURL&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KURL ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1034" tqparent_class="1034" fileExt=".java" fileName="const KURL&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1034" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KURL&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KURL&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="KoUnit" id="1038" tqparent_class="1038" fileExt=".java" fileName="Unit" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" text="package KoUnit;&amp;#010;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1038" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Unit&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Unit ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1040" tqparent_class="1040" fileExt=".java" fileName="const KoUnit::Unit&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1040" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KoUnit::Unit&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KoUnit::Unit&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1052" tqparent_class="1052" fileExt=".java" fileName="const vKisLayerSP&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1052" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const vKisLayerSP&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const vKisLayerSP&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1056" tqparent_class="1056" fileExt=".java" fileName="const KisLayerSP" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1056" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisLayerSP&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisLayerSP ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1062" tqparent_class="1062" fileExt=".java" fileName="const KisLayerSP&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1062" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisLayerSP&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisLayerSP&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1104" tqparent_class="1104" fileExt=".java" fileName="KisGuideMgr*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1104" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGuideMgr*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGuideMgr* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1128" tqparent_class="1128" fileExt=".java" fileName="KisImage&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1128" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisImage&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisImage&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1153" tqparent_class="1153" fileExt=".java" fileName="KisNameServer*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1153" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisNameServer*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisNameServer* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1160" tqparent_class="1160" fileExt=".java" fileName="KisQuantumOperation" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QUANTUM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1160" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisQuantumOperation&amp;#010; Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//** This class is meant to be used inside KisQuantum" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1178" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisQuantumOperationMasked = new KisQuantumOperationMasked ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisQuantumOperation ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1178" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1178" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1178" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisQuantumOperationMasked to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1178" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisQuantumOperationMasked from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1178" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1161" tag="operation_1161" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1162" tag="operation_1162" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1165" tag="operation_1165" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="This function is called to clone this object.&amp;#010;@param index this is the offset" />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1169" field_type="7209071" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisQuantumOperationLinear = new KisQuantumOperationLinear ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisQuantumOperationLinear to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisQuantumOperationLinear from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1178" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1178" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisQuantumOperationMasked = new KisQuantumOperationMasked ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1178" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1178" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1178" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisQuantumOperationMasked to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1178" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisQuantumOperationMasked from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1178" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1163" tqparent_class="1163" fileExt=".java" fileName="QUANTUM" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1163" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QUANTUM&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QUANTUM ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1167" tqparent_class="1167" fileExt=".java" fileName="KisQuantumOperation*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1167" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisQuantumOperation*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisQuantumOperation* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1168" tqparent_class="1168" fileExt=".java" fileName="KisQuantumOperationLinear" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QUANTUM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1168" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisQuantumOperationLinear&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisQuantumOperationLinear ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1172" tag="operation_1172" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1173" tag="operation_1173" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1175" tag="operation_1175" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param index &amp;#010;@return KisQuantumOperation* " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1169" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisQuantumOperation = new KisQuantumOperation ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisQuantumOperation to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisQuantumOperation from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1169" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1169" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1177" tqparent_class="1177" fileExt=".java" fileName="KisQuantumOperationMasked" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QUANTUM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1177" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisQuantumOperationMasked&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisQuantumOperationMasked ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1181" tag="operation_1181" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1182" tag="operation_1182" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1184" tag="operation_1184" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param index &amp;#010;@return KisQuantumOperation* " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1178" field_type="7209071" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisQuantumOperation = new KisQuantumOperation ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisQuantumOperation to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisQuantumOperation from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1178" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1178" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1186" tqparent_class="1186" fileExt=".java" fileName="KisQuantum" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import QUANTUM;&amp;#010;import KisQuantum;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1186" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisQuantum&amp;#010; Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>&amp;#010;&amp;#010; This program is free software; you can redistribute it and/or modify&amp;#010; it under the terms of the GNU General Public License as published by&amp;#010; the Free Software Foundation; either version 2 of the License, or&amp;#010; (at your option) any later version.&amp;#010;&amp;#010; This program is distributed in the hope that it will be useful,&amp;#010; but WITHOUT ANY WARRANTY; without even the implied warranty of&amp;#010; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&amp;#010; GNU General Public License for more details.&amp;#010;&amp;#010; You should have received a copy of the GNU General Public License&amp;#010; along with this program; if not, write to the Free Software&amp;#010; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.&amp;#010;//**&amp;#010;An editable wrapper around the byte values for a single colour channel." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1200" tag="tblock_0" canDelete="false" indentLevel="1" text="private QUANTUM* m_quantum;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1201" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisQuantumOperation* m_op;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisQuantum ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1200" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1200" text="return m_quantum;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_quantum&amp;#010;&amp;#010;@return the value of m_quantum" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1200" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1200" text="m_quantum = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_quantum&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1201" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1201" text="return m_op;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_op&amp;#010;&amp;#010;@return the value of m_op" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1201" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1201" text="m_op = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_op&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1187" tag="operation_1187" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param q &amp;#010;@param op &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1191" tag="operation_1191" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1192" tag="operation_1192" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param q &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1194" tag="operation_1194" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param q &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1196" tag="operation_1196" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param q &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1198" tag="operation_1198" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param index &amp;#010;@return KisQuantum " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1200" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1200" tag="tblock_0" canDelete="false" indentLevel="1" text="private QUANTUM* m_quantum;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1200" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1200" text="return m_quantum;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_quantum&amp;#010;&amp;#010;@return the value of m_quantum" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1200" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1200" text="m_quantum = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_quantum&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1201" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1201" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisQuantumOperation* m_op;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1201" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1201" text="return m_op;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_op&amp;#010;&amp;#010;@return the value of m_op" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1201" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1201" text="m_op = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_op&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1188" tqparent_class="1188" fileExt=".java" fileName="QUANTUM*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1188" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QUANTUM*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QUANTUM* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1202" tqparent_class="1202" fileExt=".java" fileName="KisPixelRO" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisStrategyColorSpaceSP;&amp;#010;import KisProfileSP;&amp;#010;import QUANTUM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1202" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPixelRO&amp;#010;// XXX: Template these classes to byte, int, float, double// XXX: Separate color channels from substance channels (wetness, thickness, grainyness) on construction/**&amp;#010;KisPixel and KisPixelRO are the primary classes to access individual pixel data.&amp;#010;A pixel consists of channels of a certain size. At the moment, all channels must&amp;#010;be of the same size, and that size is one byte, or QUANTUM. In the future&amp;#010;pixels with heteregenous channels and larger (or smaller?) channels will be&amp;#010;possible, too.&amp;#010;&amp;#010;The [] operator returns the channel at that index. You can discover the number&amp;#010;of channels and the names of the channels by querying the color strategy.&amp;#010;All channels can be accessed using this method.&amp;#010;&amp;#010;There are three types of channels: color, alpha and substance.&amp;#010;&amp;#010;Generally, in filters and suchlike code, you can treat all color channels the same, &amp;#010;and have a different algorithm for alpha. Substance is a future extension, usable&amp;#010;for wetness, grainyness or thickness.&amp;#010;&amp;#010;The color channels come first -- this is useful if you want to loop over &amp;#010;these channels (for int i = 0; i &lt; colorspace -> nColorChannels(); ++i) { hack(pixel[i]); }.&amp;#010;&amp;#010;The next index after the colour channels points to the alpha channel. A pointer to&amp;#010;the value of the alpha channel can also be retrieved with alpha(). Always&amp;#010;check whether there is actually an alpha channel, otherwise alpha() will&amp;#010;return the first channel of the next pixel, most probably, or perhaps even&amp;#010;something worse.&amp;#010;&amp;#010;After alpha, the substance channels will come.&amp;#010;&amp;#010;Note: once you start working with color management a sequence of bytes that happens to&amp;#010;encode R, G and B values is still meaningless. You cannot know what _color_ the bytes&amp;#010;represent unless you also have a profile. So KisPixel must know about the profile, too.&amp;#010;//**&amp;#010;A read-only pixel. You can retrieve the channel values by name or position&amp;#010;or all channels as a value vector." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1220" tag="tblock_0" canDelete="false" indentLevel="1" text="private const QUANTUM* m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1221" tag="tblock_2" canDelete="false" indentLevel="1" text="private const QUANTUM* m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1222" tag="tblock_5" canDelete="false" indentLevel="1" text="private QUANTUM m_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1223" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1224" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPixelRO ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1220" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1220" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1220" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1220" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1221" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1221" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1221" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1221" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1222" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1222" text="return m_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selected&amp;#010;&amp;#010;@return the value of m_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1222" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1222" text="m_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1223" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1223" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1223" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1223" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1224" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1224" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1224" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1224" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1203" tag="operation_1203" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channels &amp;#010;@param alpha &amp;#010;@param colorStrategy &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1209" tag="operation_1209" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1210" tag="operation_1210" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param index &amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1212" tag="operation_1212" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1213" tag="operation_1213" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1214" tag="operation_1214" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param selected &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1216" tag="operation_1216" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisStrategyColorSpaceSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1217" tag="operation_1217" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1219" tag="operation_1219" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisProfileSP " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1220" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1220" tag="tblock_0" canDelete="false" indentLevel="1" text="private const QUANTUM* m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1220" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1220" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1220" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1220" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1221" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1221" tag="tblock_2" canDelete="false" indentLevel="1" text="private const QUANTUM* m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1221" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1221" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1221" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1221" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1222" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1222" tag="tblock_5" canDelete="false" indentLevel="1" text="private QUANTUM m_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1222" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1222" text="return m_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selected&amp;#010;&amp;#010;@return the value of m_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1222" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1222" text="m_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1223" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1223" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1223" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1223" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1223" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1223" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1224" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1224" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1224" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1224" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1224" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1224" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1204" tqparent_class="1204" fileExt=".java" fileName="const QUANTUM*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1204" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QUANTUM*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QUANTUM* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1225" tqparent_class="1225" fileExt=".java" fileName="KisPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import KisStrategyColorSpaceSP;&amp;#010;import KisProfileSP;&amp;#010;import KisQuantum;&amp;#010;import QUANTUM;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1225" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPixel&amp;#010;A read-write pixel. You can retrieve the channel values by name or position&amp;#010;or all channels as a pointer vector.&amp;#010;&amp;#010;The alpha channel is separately available." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1248" tag="tblock_0" canDelete="false" indentLevel="1" text="private QUANTUM* m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1249" tag="tblock_2" canDelete="false" indentLevel="1" text="private QUANTUM* m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1250" tag="tblock_5" canDelete="false" indentLevel="1" text="private QUANTUM m_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1251" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1252" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1248" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1248" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1248" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1248" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1249" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1249" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1249" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1249" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1250" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1250" text="return m_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selected&amp;#010;&amp;#010;@return the value of m_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1250" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1250" text="m_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1251" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1251" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1251" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1251" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1252" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1252" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1252" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1252" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1226" tag="operation_1226" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param nbChannels &amp;#010;@param nbAlphaChannels &amp;#010;@param colorStrategy &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1231" tag="operation_1231" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param channels &amp;#010;@param alpha &amp;#010;@param colorStrategy &amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1236" tag="operation_1236" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1237" tag="operation_1237" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param index &amp;#010;@return KisQuantum " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1239" tag="operation_1239" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisQuantum " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1240" tag="operation_1240" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QUANTUM " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1241" tag="operation_1241" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param selected &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1243" tag="operation_1243" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisStrategyColorSpaceSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1244" tag="operation_1244" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param profile &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1246" tag="operation_1246" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return KisProfileSP " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1247" tag="operation_1247" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return QUANTUM* " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1248" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1248" tag="tblock_0" canDelete="false" indentLevel="1" text="private QUANTUM* m_channels;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1248" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1248" text="return m_channels;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channels&amp;#010;&amp;#010;@return the value of m_channels" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1248" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1248" text="m_channels = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channels&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1249" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1249" tag="tblock_2" canDelete="false" indentLevel="1" text="private QUANTUM* m_alpha;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1249" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1249" text="return m_alpha;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_alpha&amp;#010;&amp;#010;@return the value of m_alpha" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1249" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1249" text="m_alpha = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_alpha&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1250" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1250" tag="tblock_5" canDelete="false" indentLevel="1" text="private QUANTUM m_selected;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1250" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1250" text="return m_selected;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_selected&amp;#010;&amp;#010;@return the value of m_selected" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1250" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1250" text="m_selected = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_selected&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1251" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1251" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisStrategyColorSpaceSP m_colorStrategy;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1251" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1251" text="return m_colorStrategy;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorStrategy&amp;#010;&amp;#010;@return the value of m_colorStrategy" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1251" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1251" text="m_colorStrategy = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorStrategy&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1252" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1252" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisProfileSP m_profile;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1252" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1252" text="return m_profile;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_profile&amp;#010;&amp;#010;@return the value of m_profile" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1252" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1252" text="m_profile = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_profile&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1253" tqparent_class="1253" fileExt=".java" fileName="KisFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1253" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterStrategy&amp;#010;enum enumFilterType {&amp;#010;BOX_FILTER,&amp;#010;TRIANGLE_FILTER,&amp;#010;BELL_FILTER,&amp;#010;B_SPLINE_FILTER,&amp;#010;FILTER,&amp;#010;LANCZOS3_FILTER,&amp;#010;MITCHELL_FILTER&amp;#010;};" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1259" tag="tblock_0" canDelete="false" indentLevel="1" text="protected double supportVal;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="tblock_2" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBoxFilterStrategy = new KisBoxFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="tblock_8" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisTriangleFilterStrategy = new KisTriangleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_14" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBellFilterStrategy = new KisBellFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1311" tag="tblock_20" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisMitchellFilterStrategy = new KisMitchellFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1259" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1259" text="return supportVal;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of supportVal&amp;#010;&amp;#010;@return the value of supportVal" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1259" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1259" text="supportVal = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of supportVal&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1269" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBoxFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1269" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBoxFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1269" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1277" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisTriangleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1277" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisTriangleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1277" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBellFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBellFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1311" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1311" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1311" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisMitchellFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1311" tag="hblock_tag_24" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisMitchellFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1311" tag="hblock_tag_25" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1254" tag="operation_1254" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1255" tag="operation_1255" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1256" tag="operation_1256" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1258" tag="operation_1258" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1259" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1259" tag="tblock_0" canDelete="false" indentLevel="1" text="protected double supportVal;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1259" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1259" text="return supportVal;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of supportVal&amp;#010;&amp;#010;@return the value of supportVal" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1259" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1259" text="supportVal = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of supportVal&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1261" field_type="7602208" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisSimpleFilterStrategy = new KisSimpleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisSimpleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisSimpleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1261" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1269" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="tblock_2" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBoxFilterStrategy = new KisBoxFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1269" tag="hblock_tag_5" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBoxFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1269" tag="hblock_tag_6" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBoxFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1269" tag="hblock_tag_7" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1277" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="tblock_8" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisTriangleFilterStrategy = new KisTriangleFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="hblock_tag_9" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="hblock_tag_10" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1277" tag="hblock_tag_11" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisTriangleFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1277" tag="hblock_tag_12" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisTriangleFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1277" tag="hblock_tag_13" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1285" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="tblock_14" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBellFilterStrategy = new KisBellFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="hblock_tag_15" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="hblock_tag_16" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="hblock_tag_17" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBellFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="hblock_tag_18" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBellFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="hblock_tag_19" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1293" field_type="1096849400" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisBSplineFilterStrategy = new KisBSplineFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisBSplineFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisBSplineFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1301" field_type="7602259" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisLanczos3FilterStrategy = new KisLanczos3FilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisLanczos3FilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisLanczos3FilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1311" field_type="0" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1311" tag="tblock_20" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisMitchellFilterStrategy = new KisMitchellFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1311" tag="hblock_tag_21" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1311" tag="hblock_tag_22" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1311" tag="hblock_tag_23" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisMitchellFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1311" tag="hblock_tag_24" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisMitchellFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1311" tag="hblock_tag_25" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1260" tqparent_class="1260" fileExt=".java" fileName="KisSimpleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1260" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisSimpleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisSimpleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1261" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1261" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1261" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1264" tag="operation_1264" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1265" tag="operation_1265" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1266" tag="operation_1266" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1261" field_type="0" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1261" tag="tblock_0" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1261" tag="hblock_tag_0" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1261" tag="hblock_tag_1" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1261" tag="hblock_tag_2" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1261" tag="hblock_tag_3" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1261" tag="hblock_tag_4" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1261" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1268" tqparent_class="1268" fileExt=".java" fileName="KisBoxFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1268" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBoxFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBoxFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1272" tag="operation_1272" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1273" tag="operation_1273" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1274" tag="operation_1274" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1269" field_type="6750309" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1269" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1269" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1276" tqparent_class="1276" fileExt=".java" fileName="KisTriangleFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1276" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTriangleFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTriangleFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1280" tag="operation_1280" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1281" tag="operation_1281" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1282" tag="operation_1282" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1277" field_type="7929959" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1277" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1277" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1284" tqparent_class="1284" fileExt=".java" fileName="KisBellFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1284" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBellFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBellFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1288" tag="operation_1288" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1289" tag="operation_1289" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1290" tag="operation_1290" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1285" field_type="5439602" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1285" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1285" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1292" tqparent_class="1292" fileExt=".java" fileName="KisBSplineFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1292" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBSplineFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBSplineFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1296" tag="operation_1296" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1297" tag="operation_1297" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1298" tag="operation_1298" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1293" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1293" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1293" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1300" tqparent_class="1300" fileExt=".java" fileName="KisLanczos3FilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1300" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLanczos3FilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLanczos3FilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1304" tag="operation_1304" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1305" tag="operation_1305" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1306" tag="operation_1306" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1308" tag="operation_1308" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param x &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1301" field_type="7602259" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1301" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1301" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1310" tqparent_class="1310" fileExt=".java" fileName="KisMitchellFilterStrategy" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1310" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisMitchellFilterStrategy&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisMitchellFilterStrategy ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1314" tag="operation_1314" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1315" tag="operation_1315" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1316" tag="operation_1316" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param t &amp;#010;@return double " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1311" field_type="16" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisFilterStrategy = new KisFilterStrategy ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisFilterStrategy to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisFilterStrategy from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1311" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1311" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1318" tqparent_class="1318" fileExt=".java" fileName="KisTransformVisitor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import Q_INT32;&amp;#010;import enumFilterType;&amp;#010;import bool;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1318" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTransformVisitor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1344" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDevice* m_dev;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1345" tag="tblock_2" canDelete="false" indentLevel="1" text="private boolean m_cancelRequested;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTransformVisitor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1344" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1344" text="return m_dev;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dev&amp;#010;&amp;#010;@return the value of m_dev" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1344" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1344" text="m_dev = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dev&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1345" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1345" text="return m_cancelRequested;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1345" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1345" text="m_cancelRequested = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1322" tag="operation_1322" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1323" tag="operation_1323" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1324" tag="operation_1324" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param dev &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1326" tag="operation_1326" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param scale &amp;#010;@param scaleDenom &amp;#010;@param shear &amp;#010;@param dx &amp;#010;@param m_progress &amp;#010;@param filterStrategy &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1334" tag="operation_1334" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param xscale &amp;#010;@param yscale &amp;#010;@param xshear &amp;#010;@param yshear &amp;#010;@param denominator &amp;#010;@param xtranslate &amp;#010;@param ytranslate &amp;#010;@param m_progress &amp;#010;@param filterType &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1346" tag="operation_1346" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1319" field_type="159873936" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public KisProgressSubject = new KisProgressSubject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisProgressSubject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisProgressSubject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1319" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1319" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1344" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1344" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisPaintDevice* m_dev;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1344" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1344" text="return m_dev;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dev&amp;#010;&amp;#010;@return the value of m_dev" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1344" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1344" text="m_dev = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dev&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1345" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Implement KisProgressSubject" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1345" tag="tblock_2" canDelete="false" indentLevel="1" text="private boolean m_cancelRequested;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1345" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1345" text="return m_cancelRequested;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1345" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1345" text="m_cancelRequested = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Implement KisProgressSubject" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1332" tqparent_class="1332" fileExt=".java" fileName="KisFilterStrategy*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1332" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterStrategy*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterStrategy* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1347" tqparent_class="1347" fileExt=".java" fileName="KoStore" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1347" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoStore&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoStore ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1348" tqparent_class="1348" fileExt=".java" fileName="KisTiledDataManager" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1348" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTiledDataManager&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTiledDataManager ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1349" field_type="7471205" initialValue="" role_id="0" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="1" text="public KisDataManager = new KisDataManager ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="1" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="1" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="1" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type KisDataManager to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="1" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type KisDataManager from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1349" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1349" role_id="1" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1355" tqparent_class="1355" fileExt=".java" fileName="const KisDataManager&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1355" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisDataManager&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisDataManager&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1358" tqparent_class="1358" fileExt=".java" fileName="KisMemento" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1358" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisMemento&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisMemento ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1359" tqparent_class="1359" fileExt=".java" fileName="KisMemento*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1359" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisMemento*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisMemento* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1365" tqparent_class="1365" fileExt=".java" fileName="KoStore*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1365" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoStore*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoStore* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1371" tqparent_class="1371" fileExt=".java" fileName="Q_INT32&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1371" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT32&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT32&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1388" tqparent_class="1388" fileExt=".java" fileName="Q_UINT8" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1388" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT8 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1395" tqparent_class="1395" fileExt=".java" fileName="Q_UINT8*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1395" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_UINT8*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_UINT8* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1398" tqparent_class="1398" fileExt=".java" fileName="KisDataManager*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1398" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDataManager*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDataManager* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1424" tqparent_class="1424" fileExt=".java" fileName="KisRectIterator" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1424" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRectIterator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRectIterator ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1425" tqparent_class="1425" fileExt=".java" fileName="KisHLineIterator" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1425" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHLineIterator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHLineIterator ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1426" tqparent_class="1426" fileExt=".java" fileName="KisVLineIterator" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1426" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisVLineIterator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisVLineIterator ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1427" tqparent_class="1427" fileExt=".java" fileName="QWMatrix" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1427" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QWMatrix&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QWMatrix ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1428" tqparent_class="1428" fileExt=".java" fileName="KisRotateVisitor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1428" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRotateVisitor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRotateVisitor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1429" tqparent_class="1429" fileExt=".java" fileName="KisRectIteratorPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1429" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRectIteratorPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRectIteratorPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1430" tqparent_class="1430" fileExt=".java" fileName="KisVLineIteratorPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1430" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisVLineIteratorPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisVLineIteratorPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1431" tqparent_class="1431" fileExt=".java" fileName="KisHLineIteratorPixel" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1431" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHLineIteratorPixel&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHLineIteratorPixel ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1432" tqparent_class="1432" fileExt=".java" fileName="KNamedCommand" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1432" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KNamedCommand&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KNamedCommand ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1443" tqparent_class="1443" fileExt=".java" fileName="KisImage*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1443" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisImage*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisImage* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1448" tqparent_class="1448" fileExt=".java" fileName="const KisPaintDevice&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1448" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisPaintDevice&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisPaintDevice&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1465" tqparent_class="1465" fileExt=".java" fileName="KNamedCommand*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1465" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KNamedCommand*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KNamedCommand* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1467" tqparent_class="1467" fileExt=".java" fileName="const bool" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1467" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const bool&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const bool ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1510" tqparent_class="1510" fileExt=".java" fileName="const QImage&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1510" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QImage&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QImage&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1526" tqparent_class="1526" fileExt=".java" fileName="QColor*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1526" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QColor*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QColor* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1537" tqparent_class="1537" fileExt=".java" fileName="const Q_UINT8*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1537" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const Q_UINT8*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const Q_UINT8* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1557" tqparent_class="1557" fileExt=".java" fileName="const KisImage*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1557" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const KisImage*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const KisImage* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1618" tqparent_class="1618" fileExt=".java" fileName="Q_INT8" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1618" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Q_INT8&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Q_INT8 ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1626" tqparent_class="1626" fileExt=".java" fileName="KisPaintDevice&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1626" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintDevice&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintDevice&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1639" tqparent_class="1639" fileExt=".java" fileName="KisScaleVisitor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1639" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisScaleVisitor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisScaleVisitor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1642" tqparent_class="1642" fileExt=".java" fileName="KisRotateVisitor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1642" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRotateVisitor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRotateVisitor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1645" tqparent_class="1645" fileExt=".java" fileName="KisTransformVisitor&amp;" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1645" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTransformVisitor&amp;&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTransformVisitor&amp; ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1668" tqparent_class="1668" fileExt=".java" fileName="const QColor" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1668" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class Const QColor&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public Const QColor ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1674" tqparent_class="1674" fileExt=".java" fileName="KAction" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1674" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KAction&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KAction ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1675" tqparent_class="1675" fileExt=".java" fileName="KisView" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1675" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisView&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisView ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1676" tqparent_class="1676" fileExt=".java" fileName="KisDockFrameDocker" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1676" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDockFrameDocker&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDockFrameDocker ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1677" tqparent_class="1677" fileExt=".java" fileName="KoTabbedToolDock" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1677" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoTabbedToolDock&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoTabbedToolDock ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1678" tqparent_class="1678" fileExt=".java" fileName="KoToolDockManager" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1678" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoToolDockManager&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoToolDockManager ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1679" tqparent_class="1679" fileExt=".java" fileName="KActionCollection" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1679" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KActionCollection&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KActionCollection ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1680" tqparent_class="1680" fileExt=".java" fileName="KisPaintBox" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1680" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintBox&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintBox ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1681" tqparent_class="1681" fileExt=".java" fileName="KisLayerBox" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1681" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLayerBox&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLayerBox ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1682" tqparent_class="1682" fileExt=".java" fileName="KisFilterBox" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1682" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterBox&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterBox ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1683" tqparent_class="1683" fileExt=".java" fileName="ControlFrame" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1683" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class ControlFrame&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public ControlFrame ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1684" tqparent_class="1684" fileExt=".java" fileName="KisBirdEyeBox" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1684" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBirdEyeBox&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBirdEyeBox ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1685" tqparent_class="1685" fileExt=".java" fileName="KisChannelView" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1685" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisChannelView&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisChannelView ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1686" tqparent_class="1686" fileExt=".java" fileName="KisAutobrush" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1686" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAutobrush&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAutobrush ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1687" tqparent_class="1687" fileExt=".java" fileName="KisTextBrush" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1687" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTextBrush&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTextBrush ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1688" tqparent_class="1688" fileExt=".java" fileName="KisAutogradient" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1688" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAutogradient&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAutogradient ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1689" tqparent_class="1689" fileExt=".java" fileName="KisHSVWidget" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1689" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHSVWidget&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHSVWidget ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1690" tqparent_class="1690" fileExt=".java" fileName="KisRGBWidget" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1690" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRGBWidget&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRGBWidget ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1691" tqparent_class="1691" fileExt=".java" fileName="KisGrayWidget" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1691" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGrayWidget&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGrayWidget ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1692" tqparent_class="1692" fileExt=".java" fileName="KisPaletteWidget" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1692" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaletteWidget&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaletteWidget ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1693" tqparent_class="1693" fileExt=".java" fileName="KisResourceMediator" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1693" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisResourceMediator&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisResourceMediator ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1694" tqparent_class="1694" fileExt=".java" fileName="KisDockerManager" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" text="&amp;#010;import enumDockerStyle;&amp;#010;import KisImageSP;&amp;#010;import KisLayerSP;&amp;#010;import bool;" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1694" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDockerManager&amp;#010;The docker manager keeps track of dockers and their tabs.&amp;#010;&amp;#010;There are three kinds of dockers: sliding dockers, shading&amp;#010;dockers and toolboxes.&amp;#010;&amp;#010;Tabs are created by calling addDockerTab with a widget (the tab)&amp;#010;and a KisID (a combination of language-independent identifying&amp;#010;string and a caption). If there is already a docker with the&amp;#010;identifying string, then the tab is added to that docker,&amp;#010;otherwise a new docker is created.&amp;#010;&amp;#010;On application shutdown, the configuration is saved. Next time&amp;#010;on startup, if a tab is added, we first look in the saved configuation,&amp;#010;and if a tab and docker is present with the specified identifying&amp;#010;string, then we restore that tab in that place, otherwise in the&amp;#010;specified place.&amp;#010;&amp;#010;XXX: for post 1.4: make sure we can drag &amp; drop widgets." />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks>
+ <ccfdeclarationcodeblock tqparent_id="1718" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; QWidget * >* m_tabs;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1720" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KisDockFrameDocker * >* m_dockWindows;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1722" tag="tblock_5" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KisPaintBox * >* m_toolBoxes;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1724" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KoTabbedToolDock * >* m_sliders;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1725" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisView* m_view;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1726" tag="tblock_14" canDelete="false" indentLevel="1" text="private KActionCollection* m_ac;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1751" tag="tblock_17" canDelete="false" indentLevel="1" text="private KoToolDockManager* m_toolDockManager;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1753" tag="tblock_20" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_layerchannelslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1754" tag="tblock_23" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_tqshapesslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_26" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_fillsslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1756" tag="tblock_29" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_toolcontrolslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_32" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_colorslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1759" tag="tblock_35" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_layerchanneldocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_38" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_tqshapesdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_41" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_fillsdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_44" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_toolcontroldocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_47" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_colordocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1765" tag="tblock_50" canDelete="false" indentLevel="1" text="private KisPaintBox* m_paintboxdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1767" tag="tblock_53" canDelete="false" indentLevel="1" text="private KisLayerBox* m_layerBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1768" tag="tblock_56" canDelete="false" indentLevel="1" text="private KisPaintBox* m_paintBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1770" tag="tblock_59" canDelete="false" indentLevel="1" text="private KisFilterBox* m_filterBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1772" tag="tblock_62" canDelete="false" indentLevel="1" text="private ControlFrame* m_controlWidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1774" tag="tblock_65" canDelete="false" indentLevel="1" text="private KisBirdEyeBox* m_birdEyeBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_68" canDelete="false" indentLevel="1" text="private KisChannelView* m_channelView;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1778" tag="tblock_71" canDelete="false" indentLevel="1" text="private KisAutobrush* m_autobrush;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1780" tag="tblock_74" canDelete="false" indentLevel="1" text="private KisTextBrush* m_textBrush;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1782" tag="tblock_77" canDelete="false" indentLevel="1" text="private KisAutogradient* m_autogradient;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1784" tag="tblock_80" canDelete="false" indentLevel="1" text="private KisHSVWidget* m_hsvwidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1786" tag="tblock_83" canDelete="false" indentLevel="1" text="private KisRGBWidget* m_rgbwidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1788" tag="tblock_86" canDelete="false" indentLevel="1" text="private KisGrayWidget* m_graywidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1790" tag="tblock_89" canDelete="false" indentLevel="1" text="private KisPaletteWidget* m_palettewidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1792" tag="tblock_92" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_brushMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1793" tag="tblock_95" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_patternMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1794" tag="tblock_98" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_gradientMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <ccfdeclarationcodeblock tqparent_id="1795" tag="tblock_101" canDelete="false" indentLevel="1" text="private boolean m_slidersSetup;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDockerManager ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks>
+ <codeaccessormethod accessType="0" tqparent_id="1718" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1718" text="return m_tabs;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tabs&amp;#010;&amp;#010;@return the value of m_tabs" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1718" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1718" text="m_tabs = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tabs&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1720" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1720" text="return m_dockWindows;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dockWindows&amp;#010;&amp;#010;@return the value of m_dockWindows" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1720" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1720" text="m_dockWindows = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dockWindows&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1722" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1722" text="return m_toolBoxes;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolBoxes&amp;#010;&amp;#010;@return the value of m_toolBoxes" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1722" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1722" text="m_toolBoxes = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolBoxes&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1724" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1724" text="return m_sliders;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_sliders&amp;#010;&amp;#010;@return the value of m_sliders" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1724" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1724" text="m_sliders = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_sliders&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1725" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1725" text="return m_view;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_view&amp;#010;&amp;#010;@return the value of m_view" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1725" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1725" text="m_view = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_view&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1726" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1726" text="return m_ac;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_ac&amp;#010;&amp;#010;@return the value of m_ac" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1726" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1726" text="m_ac = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_ac&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1751" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1751" text="return m_toolDockManager;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolDockManager&amp;#010;&amp;#010;@return the value of m_toolDockManager" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1751" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1751" text="m_toolDockManager = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolDockManager&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1753" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1753" text="return m_layerchannelslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1753" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1753" text="m_layerchannelslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1754" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1754" text="return m_tqshapesslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqshapesslider&amp;#010;&amp;#010;@return the value of m_tqshapesslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1754" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1754" text="m_tqshapesslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqshapesslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_fillsslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_fillsslider&amp;#010;&amp;#010;@return the value of m_fillsslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1755" text="m_fillsslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_fillsslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1756" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1756" text="return m_toolcontrolslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolcontrolslider&amp;#010;&amp;#010;@return the value of m_toolcontrolslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1756" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1756" text="m_toolcontrolslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolcontrolslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1757" text="return m_colorslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorslider&amp;#010;&amp;#010;@return the value of m_colorslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1757" text="m_colorslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1759" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1759" text="return m_layerchanneldocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1759" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1759" text="m_layerchanneldocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_tqshapesdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqshapesdocker&amp;#010;&amp;#010;@return the value of m_tqshapesdocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1760" text="m_tqshapesdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqshapesdocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_fillsdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_fillsdocker&amp;#010;&amp;#010;@return the value of m_fillsdocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1761" text="m_fillsdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_fillsdocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1762" text="return m_toolcontroldocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolcontroldocker&amp;#010;&amp;#010;@return the value of m_toolcontroldocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1762" text="m_toolcontroldocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolcontroldocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1763" text="return m_colordocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colordocker&amp;#010;&amp;#010;@return the value of m_colordocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1763" text="m_colordocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colordocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1765" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1765" text="return m_paintboxdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1765" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1765" text="m_paintboxdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1767" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1767" text="return m_layerBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1767" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1767" text="m_layerBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1768" text="return m_paintBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintBox&amp;#010;&amp;#010;@return the value of m_paintBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1768" text="m_paintBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1770" text="return m_filterBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_filterBox&amp;#010;&amp;#010;@return the value of m_filterBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1770" text="m_filterBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_filterBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1772" text="return m_controlWidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_controlWidget&amp;#010;&amp;#010;@return the value of m_controlWidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1772" text="m_controlWidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_controlWidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1774" text="return m_birdEyeBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_birdEyeBox&amp;#010;&amp;#010;@return the value of m_birdEyeBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1774" text="m_birdEyeBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_birdEyeBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1776" text="return m_channelView;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channelView&amp;#010;&amp;#010;@return the value of m_channelView" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1776" text="m_channelView = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channelView&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_72" canDelete="false" indentLevel="1" classfield_id="1778" text="return m_autobrush;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_autobrush&amp;#010;&amp;#010;@return the value of m_autobrush" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_73" canDelete="false" indentLevel="1" classfield_id="1778" text="m_autobrush = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_autobrush&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_75" canDelete="false" indentLevel="1" classfield_id="1780" text="return m_textBrush;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_textBrush&amp;#010;&amp;#010;@return the value of m_textBrush" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_76" canDelete="false" indentLevel="1" classfield_id="1780" text="m_textBrush = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_textBrush&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_78" canDelete="false" indentLevel="1" classfield_id="1782" text="return m_autogradient;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_autogradient&amp;#010;&amp;#010;@return the value of m_autogradient" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_79" canDelete="false" indentLevel="1" classfield_id="1782" text="m_autogradient = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_autogradient&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1784" tag="hblock_tag_81" canDelete="false" indentLevel="1" classfield_id="1784" text="return m_hsvwidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hsvwidget&amp;#010;&amp;#010;@return the value of m_hsvwidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1784" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="1784" text="m_hsvwidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hsvwidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1786" tag="hblock_tag_84" canDelete="false" indentLevel="1" classfield_id="1786" text="return m_rgbwidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_rgbwidget&amp;#010;&amp;#010;@return the value of m_rgbwidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1786" tag="hblock_tag_85" canDelete="false" indentLevel="1" classfield_id="1786" text="m_rgbwidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_rgbwidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1788" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="1788" text="return m_graywidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_graywidget&amp;#010;&amp;#010;@return the value of m_graywidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1788" tag="hblock_tag_88" canDelete="false" indentLevel="1" classfield_id="1788" text="m_graywidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_graywidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1790" tag="hblock_tag_90" canDelete="false" indentLevel="1" classfield_id="1790" text="return m_palettewidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_palettewidget&amp;#010;&amp;#010;@return the value of m_palettewidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1790" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="1790" text="m_palettewidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_palettewidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1792" tag="hblock_tag_93" canDelete="false" indentLevel="1" classfield_id="1792" text="return m_brushMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_brushMediator&amp;#010;&amp;#010;@return the value of m_brushMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1792" tag="hblock_tag_94" canDelete="false" indentLevel="1" classfield_id="1792" text="m_brushMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_brushMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1793" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="1793" text="return m_patternMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_patternMediator&amp;#010;&amp;#010;@return the value of m_patternMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1793" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="1793" text="m_patternMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_patternMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1794" tag="hblock_tag_99" canDelete="false" indentLevel="1" classfield_id="1794" text="return m_gradientMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_gradientMediator&amp;#010;&amp;#010;@return the value of m_gradientMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1794" tag="hblock_tag_100" canDelete="false" indentLevel="1" classfield_id="1794" text="m_gradientMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_gradientMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="0" tqparent_id="1795" tag="hblock_tag_102" canDelete="false" indentLevel="1" classfield_id="1795" text="return m_slidersSetup;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_slidersSetup&amp;#010;&amp;#010;@return the value of m_slidersSetup" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1795" tag="hblock_tag_103" canDelete="false" indentLevel="1" classfield_id="1795" text="m_slidersSetup = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_slidersSetup&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks>
+ <codeoperation tqparent_id="1698" tag="operation_1698" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param view &amp;#010;@param ac &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1703" tag="operation_1703" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1704" tag="operation_1704" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param tab &amp;#010;@param docker &amp;#010;@param docktype &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1708" tag="operation_1708" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param oldTool &amp;#010;@param newTool &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1712" tag="operation_1712" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param oldTool &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1714" tag="operation_1714" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param img &amp;#010;@param layer &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1727" tag="operation_1727" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1728" tag="operation_1728" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param brush &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1730" tag="operation_1730" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param gradient &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1732" tag="operation_1732" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param pattern &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1734" tag="operation_1734" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1736" tag="operation_1736" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1738" tag="operation_1738" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1740" tag="operation_1740" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1742" tag="operation_1742" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@param v &amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1744" tag="operation_1744" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1745" tag="operation_1745" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1746" tag="operation_1746" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1747" tag="operation_1747" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1748" tag="operation_1748" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ <codeoperation tqparent_id="1749" tag="operation_1749" canDelete="false" indentLevel="1" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="&amp;#010;@return void " />
+ </header>
+ </codeoperation>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields>
+ <codeclassfield tqparent_id="1695" field_type="7864421" initialValue="" role_id="1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" role_id="0" text="public QObject = new QObject ( );" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="0" text="return ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of &amp;#010;&amp;#010;@return the value of " />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="0" text=" = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of &amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="2" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="0" text=".add(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Add an object of type QObject to the List &amp;#010;&amp;#010;@return void" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="3" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="0" text=".remove(value);" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Remove an object of type QObject from the List &amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="4" tqparent_id="1695" tag="" canDelete="false" writeOutText="false" indentLevel="1" classfield_id="1695" role_id="0" text="return (List) ;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the list of &amp;#010;&amp;#010;@return List of " />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1718" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1718" tag="tblock_0" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; QWidget * >* m_tabs;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1718" tag="hblock_tag_0" canDelete="false" indentLevel="1" classfield_id="1718" text="return m_tabs;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tabs&amp;#010;&amp;#010;@return the value of m_tabs" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1718" tag="hblock_tag_1" canDelete="false" indentLevel="1" classfield_id="1718" text="m_tabs = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tabs&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1720" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1720" tag="tblock_2" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KisDockFrameDocker * >* m_dockWindows;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1720" tag="hblock_tag_3" canDelete="false" indentLevel="1" classfield_id="1720" text="return m_dockWindows;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_dockWindows&amp;#010;&amp;#010;@return the value of m_dockWindows" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1720" tag="hblock_tag_4" canDelete="false" indentLevel="1" classfield_id="1720" text="m_dockWindows = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_dockWindows&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1722" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1722" tag="tblock_5" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KisPaintBox * >* m_toolBoxes;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1722" tag="hblock_tag_6" canDelete="false" indentLevel="1" classfield_id="1722" text="return m_toolBoxes;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolBoxes&amp;#010;&amp;#010;@return the value of m_toolBoxes" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1722" tag="hblock_tag_7" canDelete="false" indentLevel="1" classfield_id="1722" text="m_toolBoxes = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolBoxes&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1724" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1724" tag="tblock_8" canDelete="false" indentLevel="1" text="private KisGenericRegistry&lt; KoTabbedToolDock * >* m_sliders;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1724" tag="hblock_tag_9" canDelete="false" indentLevel="1" classfield_id="1724" text="return m_sliders;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_sliders&amp;#010;&amp;#010;@return the value of m_sliders" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1724" tag="hblock_tag_10" canDelete="false" indentLevel="1" classfield_id="1724" text="m_sliders = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_sliders&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1725" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1725" tag="tblock_11" canDelete="false" indentLevel="1" text="private KisView* m_view;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1725" tag="hblock_tag_12" canDelete="false" indentLevel="1" classfield_id="1725" text="return m_view;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_view&amp;#010;&amp;#010;@return the value of m_view" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1725" tag="hblock_tag_13" canDelete="false" indentLevel="1" classfield_id="1725" text="m_view = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_view&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1726" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1726" tag="tblock_14" canDelete="false" indentLevel="1" text="private KActionCollection* m_ac;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1726" tag="hblock_tag_15" canDelete="false" indentLevel="1" classfield_id="1726" text="return m_ac;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_ac&amp;#010;&amp;#010;@return the value of m_ac" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1726" tag="hblock_tag_16" canDelete="false" indentLevel="1" classfield_id="1726" text="m_ac = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_ac&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1751" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1751" tag="tblock_17" canDelete="false" indentLevel="1" text="private KoToolDockManager* m_toolDockManager;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1751" tag="hblock_tag_18" canDelete="false" indentLevel="1" classfield_id="1751" text="return m_toolDockManager;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolDockManager&amp;#010;&amp;#010;@return the value of m_toolDockManager" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1751" tag="hblock_tag_19" canDelete="false" indentLevel="1" classfield_id="1751" text="m_toolDockManager = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolDockManager&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1753" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Sliders" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1753" tag="tblock_20" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_layerchannelslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1753" tag="hblock_tag_21" canDelete="false" indentLevel="1" classfield_id="1753" text="return m_layerchannelslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1753" tag="hblock_tag_22" canDelete="false" indentLevel="1" classfield_id="1753" text="m_layerchannelslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Sliders" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1754" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1754" tag="tblock_23" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_tqshapesslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1754" tag="hblock_tag_24" canDelete="false" indentLevel="1" classfield_id="1754" text="return m_tqshapesslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqshapesslider&amp;#010;&amp;#010;@return the value of m_tqshapesslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1754" tag="hblock_tag_25" canDelete="false" indentLevel="1" classfield_id="1754" text="m_tqshapesslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqshapesslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1755" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1755" tag="tblock_26" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_fillsslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1755" tag="hblock_tag_27" canDelete="false" indentLevel="1" classfield_id="1755" text="return m_fillsslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_fillsslider&amp;#010;&amp;#010;@return the value of m_fillsslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1755" tag="hblock_tag_28" canDelete="false" indentLevel="1" classfield_id="1755" text="m_fillsslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_fillsslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1756" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1756" tag="tblock_29" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_toolcontrolslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1756" tag="hblock_tag_30" canDelete="false" indentLevel="1" classfield_id="1756" text="return m_toolcontrolslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolcontrolslider&amp;#010;&amp;#010;@return the value of m_toolcontrolslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1756" tag="hblock_tag_31" canDelete="false" indentLevel="1" classfield_id="1756" text="m_toolcontrolslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolcontrolslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1757" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1757" tag="tblock_32" canDelete="false" indentLevel="1" text="private KoTabbedToolDock* m_colorslider;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1757" tag="hblock_tag_33" canDelete="false" indentLevel="1" classfield_id="1757" text="return m_colorslider;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colorslider&amp;#010;&amp;#010;@return the value of m_colorslider" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1757" tag="hblock_tag_34" canDelete="false" indentLevel="1" classfield_id="1757" text="m_colorslider = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colorslider&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1759" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Dockers" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1759" tag="tblock_35" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_layerchanneldocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1759" tag="hblock_tag_36" canDelete="false" indentLevel="1" classfield_id="1759" text="return m_layerchanneldocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1759" tag="hblock_tag_37" canDelete="false" indentLevel="1" classfield_id="1759" text="m_layerchanneldocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Dockers" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1760" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1760" tag="tblock_38" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_tqshapesdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1760" tag="hblock_tag_39" canDelete="false" indentLevel="1" classfield_id="1760" text="return m_tqshapesdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_tqshapesdocker&amp;#010;&amp;#010;@return the value of m_tqshapesdocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1760" tag="hblock_tag_40" canDelete="false" indentLevel="1" classfield_id="1760" text="m_tqshapesdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_tqshapesdocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1761" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1761" tag="tblock_41" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_fillsdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1761" tag="hblock_tag_42" canDelete="false" indentLevel="1" classfield_id="1761" text="return m_fillsdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_fillsdocker&amp;#010;&amp;#010;@return the value of m_fillsdocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1761" tag="hblock_tag_43" canDelete="false" indentLevel="1" classfield_id="1761" text="m_fillsdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_fillsdocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1762" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1762" tag="tblock_44" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_toolcontroldocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1762" tag="hblock_tag_45" canDelete="false" indentLevel="1" classfield_id="1762" text="return m_toolcontroldocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_toolcontroldocker&amp;#010;&amp;#010;@return the value of m_toolcontroldocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1762" tag="hblock_tag_46" canDelete="false" indentLevel="1" classfield_id="1762" text="m_toolcontroldocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_toolcontroldocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1763" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1763" tag="tblock_47" canDelete="false" indentLevel="1" text="private KisDockFrameDocker* m_colordocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1763" tag="hblock_tag_48" canDelete="false" indentLevel="1" classfield_id="1763" text="return m_colordocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_colordocker&amp;#010;&amp;#010;@return the value of m_colordocker" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1763" tag="hblock_tag_49" canDelete="false" indentLevel="1" classfield_id="1763" text="m_colordocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_colordocker&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1765" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Toolbox" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1765" tag="tblock_50" canDelete="false" indentLevel="1" text="private KisPaintBox* m_paintboxdocker;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1765" tag="hblock_tag_51" canDelete="false" indentLevel="1" classfield_id="1765" text="return m_paintboxdocker;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1765" tag="hblock_tag_52" canDelete="false" indentLevel="1" classfield_id="1765" text="m_paintboxdocker = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Toolbox" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1767" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" text="// Widgets" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1767" tag="tblock_53" canDelete="false" indentLevel="1" text="private KisLayerBox* m_layerBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1767" tag="hblock_tag_54" canDelete="false" indentLevel="1" classfield_id="1767" text="return m_layerBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1767" tag="hblock_tag_55" canDelete="false" indentLevel="1" classfield_id="1767" text="m_layerBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="// Widgets" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1768" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1768" tag="tblock_56" canDelete="false" indentLevel="1" text="private KisPaintBox* m_paintBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1768" tag="hblock_tag_57" canDelete="false" indentLevel="1" classfield_id="1768" text="return m_paintBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_paintBox&amp;#010;&amp;#010;@return the value of m_paintBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1768" tag="hblock_tag_58" canDelete="false" indentLevel="1" classfield_id="1768" text="m_paintBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_paintBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1770" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1770" tag="tblock_59" canDelete="false" indentLevel="1" text="private KisFilterBox* m_filterBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1770" tag="hblock_tag_60" canDelete="false" indentLevel="1" classfield_id="1770" text="return m_filterBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_filterBox&amp;#010;&amp;#010;@return the value of m_filterBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1770" tag="hblock_tag_61" canDelete="false" indentLevel="1" classfield_id="1770" text="m_filterBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_filterBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1772" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1772" tag="tblock_62" canDelete="false" indentLevel="1" text="private ControlFrame* m_controlWidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1772" tag="hblock_tag_63" canDelete="false" indentLevel="1" classfield_id="1772" text="return m_controlWidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_controlWidget&amp;#010;&amp;#010;@return the value of m_controlWidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1772" tag="hblock_tag_64" canDelete="false" indentLevel="1" classfield_id="1772" text="m_controlWidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_controlWidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1774" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1774" tag="tblock_65" canDelete="false" indentLevel="1" text="private KisBirdEyeBox* m_birdEyeBox;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1774" tag="hblock_tag_66" canDelete="false" indentLevel="1" classfield_id="1774" text="return m_birdEyeBox;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_birdEyeBox&amp;#010;&amp;#010;@return the value of m_birdEyeBox" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1774" tag="hblock_tag_67" canDelete="false" indentLevel="1" classfield_id="1774" text="m_birdEyeBox = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_birdEyeBox&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1776" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1776" tag="tblock_68" canDelete="false" indentLevel="1" text="private KisChannelView* m_channelView;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1776" tag="hblock_tag_69" canDelete="false" indentLevel="1" classfield_id="1776" text="return m_channelView;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_channelView&amp;#010;&amp;#010;@return the value of m_channelView" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1776" tag="hblock_tag_70" canDelete="false" indentLevel="1" classfield_id="1776" text="m_channelView = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_channelView&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1778" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1778" tag="tblock_71" canDelete="false" indentLevel="1" text="private KisAutobrush* m_autobrush;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1778" tag="hblock_tag_72" canDelete="false" indentLevel="1" classfield_id="1778" text="return m_autobrush;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_autobrush&amp;#010;&amp;#010;@return the value of m_autobrush" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1778" tag="hblock_tag_73" canDelete="false" indentLevel="1" classfield_id="1778" text="m_autobrush = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_autobrush&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1780" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1780" tag="tblock_74" canDelete="false" indentLevel="1" text="private KisTextBrush* m_textBrush;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1780" tag="hblock_tag_75" canDelete="false" indentLevel="1" classfield_id="1780" text="return m_textBrush;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_textBrush&amp;#010;&amp;#010;@return the value of m_textBrush" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1780" tag="hblock_tag_76" canDelete="false" indentLevel="1" classfield_id="1780" text="m_textBrush = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_textBrush&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1782" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1782" tag="tblock_77" canDelete="false" indentLevel="1" text="private KisAutogradient* m_autogradient;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1782" tag="hblock_tag_78" canDelete="false" indentLevel="1" classfield_id="1782" text="return m_autogradient;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_autogradient&amp;#010;&amp;#010;@return the value of m_autogradient" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1782" tag="hblock_tag_79" canDelete="false" indentLevel="1" classfield_id="1782" text="m_autogradient = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_autogradient&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1784" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1784" tag="tblock_80" canDelete="false" indentLevel="1" text="private KisHSVWidget* m_hsvwidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1784" tag="hblock_tag_81" canDelete="false" indentLevel="1" classfield_id="1784" text="return m_hsvwidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_hsvwidget&amp;#010;&amp;#010;@return the value of m_hsvwidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1784" tag="hblock_tag_82" canDelete="false" indentLevel="1" classfield_id="1784" text="m_hsvwidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_hsvwidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1786" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1786" tag="tblock_83" canDelete="false" indentLevel="1" text="private KisRGBWidget* m_rgbwidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1786" tag="hblock_tag_84" canDelete="false" indentLevel="1" classfield_id="1786" text="return m_rgbwidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_rgbwidget&amp;#010;&amp;#010;@return the value of m_rgbwidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1786" tag="hblock_tag_85" canDelete="false" indentLevel="1" classfield_id="1786" text="m_rgbwidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_rgbwidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1788" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1788" tag="tblock_86" canDelete="false" indentLevel="1" text="private KisGrayWidget* m_graywidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1788" tag="hblock_tag_87" canDelete="false" indentLevel="1" classfield_id="1788" text="return m_graywidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_graywidget&amp;#010;&amp;#010;@return the value of m_graywidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1788" tag="hblock_tag_88" canDelete="false" indentLevel="1" classfield_id="1788" text="m_graywidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_graywidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1790" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1790" tag="tblock_89" canDelete="false" indentLevel="1" text="private KisPaletteWidget* m_palettewidget;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1790" tag="hblock_tag_90" canDelete="false" indentLevel="1" classfield_id="1790" text="return m_palettewidget;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_palettewidget&amp;#010;&amp;#010;@return the value of m_palettewidget" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1790" tag="hblock_tag_91" canDelete="false" indentLevel="1" classfield_id="1790" text="m_palettewidget = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_palettewidget&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1792" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1792" tag="tblock_92" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_brushMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1792" tag="hblock_tag_93" canDelete="false" indentLevel="1" classfield_id="1792" text="return m_brushMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_brushMediator&amp;#010;&amp;#010;@return the value of m_brushMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1792" tag="hblock_tag_94" canDelete="false" indentLevel="1" classfield_id="1792" text="m_brushMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_brushMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1793" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1793" tag="tblock_95" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_patternMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1793" tag="hblock_tag_96" canDelete="false" indentLevel="1" classfield_id="1793" text="return m_patternMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_patternMediator&amp;#010;&amp;#010;@return the value of m_patternMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1793" tag="hblock_tag_97" canDelete="false" indentLevel="1" classfield_id="1793" text="m_patternMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_patternMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1794" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1794" tag="tblock_98" canDelete="false" indentLevel="1" text="private KisResourceMediator* m_gradientMediator;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1794" tag="hblock_tag_99" canDelete="false" indentLevel="1" classfield_id="1794" text="return m_gradientMediator;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_gradientMediator&amp;#010;&amp;#010;@return the value of m_gradientMediator" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1794" tag="hblock_tag_100" canDelete="false" indentLevel="1" classfield_id="1794" text="m_gradientMediator = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_gradientMediator&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ <codeclassfield tqparent_id="1795" field_type="0" initialValue="" role_id="-1" writeOutMethods="true" listClassName="" >
+ <header>
+ <codecomment tag="" />
+ </header>
+ <ccfdeclarationcodeblock tqparent_id="1795" tag="tblock_101" canDelete="false" indentLevel="1" text="private boolean m_slidersSetup;" >
+ <header>
+ <codecomment tag="" indentLevel="1" />
+ </header>
+ </ccfdeclarationcodeblock>
+ <codeaccessormethod accessType="0" tqparent_id="1795" tag="hblock_tag_102" canDelete="false" indentLevel="1" classfield_id="1795" text="return m_slidersSetup;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Get the value of m_slidersSetup&amp;#010;&amp;#010;@return the value of m_slidersSetup" />
+ </header>
+ </codeaccessormethod>
+ <codeaccessormethod accessType="1" tqparent_id="1795" tag="hblock_tag_103" canDelete="false" indentLevel="1" classfield_id="1795" text="m_slidersSetup = value;" >
+ <header>
+ <javacodedocumentation tag="" indentLevel="1" text="Set the value of m_slidersSetup&amp;#010;&amp;#010;" />
+ </header>
+ </codeaccessormethod>
+ </codeclassfield>
+ </classfields>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1699" tqparent_class="1699" fileExt=".java" fileName="KisView*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1699" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisView*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisView* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1701" tqparent_class="1701" fileExt=".java" fileName="KActionCollection*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1701" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KActionCollection*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KActionCollection* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1709" tqparent_class="1709" fileExt=".java" fileName="KisTool*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1709" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTool*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTool* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1717" tqparent_class="1717" fileExt=".java" fileName="KisGenericRegistry&lt; QWidget * >*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1717" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGenericRegistry&lt; QWidget * >*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGenericRegistry&lt; QWidget * >* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1719" tqparent_class="1719" fileExt=".java" fileName="KisGenericRegistry&lt; KisDockFrameDocker * >*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1719" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGenericRegistry&lt; KisDockFrameDocker * >*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGenericRegistry&lt; KisDockFrameDocker * >* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1721" tqparent_class="1721" fileExt=".java" fileName="KisGenericRegistry&lt; KisPaintBox * >*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1721" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGenericRegistry&lt; KisPaintBox * >*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGenericRegistry&lt; KisPaintBox * >* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1723" tqparent_class="1723" fileExt=".java" fileName="KisGenericRegistry&lt; KoTabbedToolDock * >*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1723" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGenericRegistry&lt; KoTabbedToolDock * >*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGenericRegistry&lt; KoTabbedToolDock * >* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1750" tqparent_class="1750" fileExt=".java" fileName="KoToolDockManager*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1750" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoToolDockManager*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoToolDockManager* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1752" tqparent_class="1752" fileExt=".java" fileName="KoTabbedToolDock*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1752" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KoTabbedToolDock*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KoTabbedToolDock* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1758" tqparent_class="1758" fileExt=".java" fileName="KisDockFrameDocker*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1758" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDockFrameDocker*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDockFrameDocker* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1764" tqparent_class="1764" fileExt=".java" fileName="KisPaintBox*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1764" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaintBox*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaintBox* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1766" tqparent_class="1766" fileExt=".java" fileName="KisLayerBox*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1766" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisLayerBox*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisLayerBox* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1769" tqparent_class="1769" fileExt=".java" fileName="KisFilterBox*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1769" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisFilterBox*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisFilterBox* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1771" tqparent_class="1771" fileExt=".java" fileName="ControlFrame*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1771" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class ControlFrame*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public ControlFrame* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1773" tqparent_class="1773" fileExt=".java" fileName="KisBirdEyeBox*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1773" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisBirdEyeBox*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisBirdEyeBox* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1775" tqparent_class="1775" fileExt=".java" fileName="KisChannelView*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1775" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisChannelView*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisChannelView* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1777" tqparent_class="1777" fileExt=".java" fileName="KisAutobrush*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1777" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAutobrush*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAutobrush* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1779" tqparent_class="1779" fileExt=".java" fileName="KisTextBrush*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1779" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisTextBrush*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisTextBrush* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1781" tqparent_class="1781" fileExt=".java" fileName="KisAutogradient*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1781" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisAutogradient*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisAutogradient* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1783" tqparent_class="1783" fileExt=".java" fileName="KisHSVWidget*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1783" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisHSVWidget*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisHSVWidget* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1785" tqparent_class="1785" fileExt=".java" fileName="KisRGBWidget*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1785" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisRGBWidget*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisRGBWidget* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1787" tqparent_class="1787" fileExt=".java" fileName="KisGrayWidget*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1787" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisGrayWidget*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisGrayWidget* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1789" tqparent_class="1789" fileExt=".java" fileName="KisPaletteWidget*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1789" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisPaletteWidget*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisPaletteWidget* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1791" tqparent_class="1791" fileExt=".java" fileName="KisResourceMediator*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1791" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisResourceMediator*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisResourceMediator* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1796" tqparent_class="1796" fileExt=".java" fileName="KisDoc" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1796" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDoc&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDoc ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1797" tqparent_class="1797" fileExt=".java" fileName="KisClipboard" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1797" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisClipboard&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisClipboard ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1803" tqparent_class="1803" fileExt=".java" fileName="KisDoc*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1803" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisDoc*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisDoc* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1809" tqparent_class="1809" fileExt=".java" fileName="KAction*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1809" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KAction*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KAction* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1837" tqparent_class="1837" fileExt=".java" fileName="KisClipboard*" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1837" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class KisClipboard*&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public KisClipboard* ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ <classifiercodedocument writeOutCode="true" package="" id="1858" tqparent_class="1858" fileExt=".java" fileName="QPtrList" >
+ <textblocks>
+ <codeblockwithcomments tag="packages" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <codeblockwithcomments tag="imports" writeOutText="false" >
+ <header>
+ <codecomment tag="" writeOutText="false" />
+ </header>
+ </codeblockwithcomments>
+ <javaclassdeclarationblock tqparent_id="1858" tag="ClassDeclBlock" canDelete="false" >
+ <header>
+ <javacodedocumentation tag="" text="Class QPtrList&amp;#010;" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="fieldsDecl" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Fields" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="methodsBlock" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="constructorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Constructors" />
+ </header>
+ <textblocks>
+ <codeblockwithcomments tag="emptyconstructor" writeOutText="false" indentLevel="1" text="public QPtrList ( ) { }" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Empty Constructor" />
+ </header>
+ </codeblockwithcomments>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="accessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Accessor Methods" />
+ </header>
+ <textblocks>
+ <hierarchicalcodeblock tag="staticAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="regularAccessorMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" writeOutText="false" indentLevel="1" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ <hierarchicalcodeblock tag="operationMethods" canDelete="false" indentLevel="1" >
+ <header>
+ <codecomment tag="" indentLevel="1" text="Operations" />
+ </header>
+ <textblocks/>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </hierarchicalcodeblock>
+ </textblocks>
+ </javaclassdeclarationblock>
+ </textblocks>
+ <header>
+ <codecomment tag="" />
+ </header>
+ <classfields/>
+ </classifiercodedocument>
+ </codegenerator>
+ </codegeneration>
+ </XMI.extensions>
+</XMI>
diff --git a/chalk/doc/coordinates.txt b/chalk/doc/coordinates.txt
new file mode 100644
index 000000000..3d7e20dc6
--- /dev/null
+++ b/chalk/doc/coordinates.txt
@@ -0,0 +1,9 @@
+Coordinates in Chalk
+
+As with any paint app, finding out what you mean when you say (x,y) is difficult.
+There are the screen coordinates, the coordinates of the canvas inside the view,
+the zoomed coordinates -- and the image coordinates, paint device coordinates and the
+coordinates of the data inside the paint device.
+
+Iterators are created in terms of the image coordinates.
+
diff --git a/chalk/doc/dirty.txt b/chalk/doc/dirty.txt
new file mode 100644
index 000000000..ddb322799
--- /dev/null
+++ b/chalk/doc/dirty.txt
@@ -0,0 +1,53 @@
+Dirty marking and rendering
+
+Chalk organizes layers in the form of a tree, with a grouplayer at the root:
+
+group1 == image->rootLayer()
+ layer2
+ layer3
+ layer4
+ group2
+ layer6
+ layer7
+ adjustmentlayer 1
+ layer9
+ group3
+ adjustmentlayer 2
+ layer10
+ layer11
+ group4
+ layer12
+ layer13
+
+
+In this example, group1 is the rootlayer; layer13 is group3 is shown topmost
+in the layerbox, with group4 right under that, and layer13 is the "highest"
+paint layer in the complete tree.
+
+Compositing
+
+At every group level, a projection layer caches the result of compositing
+the layerstack in a projection paint device. The cached projection is then
+composited with the layers of that level, etc, until everything is composited
+onto the projection or the root layer. The image does _not_ have a projection
+anymore.
+
+We composite from layer2 downwards onto the projection of rootLayer, group1.
+
+
+Dirty marking
+
+In order to do the least possible amount of work (which is very important,
+especially with large amounts of layers and adjustment layers), we keep track
+of which layer is dirty. Groups without dirty layers are not recomposited; this
+dirtiness of course travels upwards, meaning that the rootlayer will always be
+dirty.
+
+XXX: Should we keep a structure with dirty rects for every layer, so we
+can determine whether the changed rect in a layer is actually in the area
+we are recompositing? I don't think so, since we should always try to keep
+
+Adjustment layers also keep a copy of the result of their work; if in group 2,
+layer 9 is adjusted, we do not want to composite layer 6 and 7 and filter the
+result through adjustmentlayer 1; we want to composite the changes in layer 9
+directly onto the cached result of the adjustment layer. \ No newline at end of file
diff --git a/chalk/doc/doc-outline b/chalk/doc/doc-outline
new file mode 100644
index 000000000..373370b5b
--- /dev/null
+++ b/chalk/doc/doc-outline
@@ -0,0 +1,187 @@
+Chalk documentation outline
+
+Last edited 2006-09-08 (Sander Koning)
+
+
+Changelog (of major updates)
+
+2006-09-08: ASK: add section separators, update for 1.6
+2006-05-28: ASK: split into 1.5 and 1.6 parts
+2006-01-31: ASK: elaborate on parts to be written; consistent spelling
+2006-01-26: ASK: split the "Using Chalk" chapter
+2006-01-21: ASK: update and make consistent
+2006-01-12: ASK: add status, and put in SVN for others to enjoy ;)
+2005-08-31: ASK: adhere to KDE style
+2005-08-30: ASK: initial version
+
+----------------------------------------------------------------------
+
+This document tries to give a suitable outline for Chalk's documentation. It
+is based on the Chalk manual in SVN (koffice/chalk/doc/manual/chalk.kwd) as of
+2005-07-08, the KDE documentation template, and furthermore contains my own
+thoughts about what the documentation for a graphics application such as this
+should look like. Comments, suggestions, ideas etc. are more than welcome.
+Especially the real content still needs a lot of polishing.
+
+----------------------------------------------------------------------
+
+The current outline (working towards 1.6):
+
+- Introduction
+ - What is Chalk
+ - Key features
+ - Color management
+ - File formats
+ - About this manual
+ - About the application author
+
+- Tutorial
+ - Starting to know Chalk (up to a new document)
+ - A small selections and layers tutorial
+ - Quick start guides
+ - Crop an area and save it as a new image
+ - Draw a rectangle on your picture
+ - Using tablets
+ - [TODO] Fills (colors, patterns and gradients)
+ - [TODO] Using tool options (the "Tool" palette)
+ - [TODO] Editing image properties (resize, rotate, ...)
+
+- [TODO] Painting
+ - [TODO] Introduction to Chalk's painting model
+ - [TODO] Detailed description of tools and options, colors, ...
+ - [TODO] Brushes, adding/customising, ...
+ - [TODO] ...
+
+- Viewing
+ - Zooming and full screen mode
+ - Working with views (multiple and split views)
+ - Miscellaneous view options (rulers and grid)
+
+- Layers
+ - General information
+ - Layer box
+ - Working with layers ([TODO] expand)
+ - Adjustment layers ([TODO] expand)
+ - [TODO] Layer tqmasks
+ - Compositing modes ([TODO] expand)
+ - [TODO] Create, transform, combine, histograms, ...
+
+- Selections
+ - Making a selection
+ - Painting your selection
+ - Unselecting
+ - Making a new selection
+ - Selecting a contiguous area (magic wand)
+ - Selecting similar colors
+ - Inverting the selection
+ - [TODO] elaborate and extend hugely
+
+- Filters
+ - (all filters)
+
+- Colorspaces
+ - Introduction to colorspaces
+ - Available colorspaces
+ - [TODO] properties, usage, converting, ...
+
+- Commands
+ - General tqlayout
+ - Menus
+ - Toolbars
+ - Palettes
+ - Dialogs
+
+- Settings
+
+- Developers' information
+ - Scripting
+ - Plugins
+
+- FAQ
+
+- Credits
+
+- Installation
+
+----------------------------------------------------------------------
+
+Outline for the 1.5 manual (final as of 2006-05-31):
+
+- Introduction
+ - What is Chalk
+ - Key features
+ - Color management
+ - File formats
+ - About this manual
+ - About the application author
+
+- Tutorial
+ - Starting to know Chalk (up to a new document)
+ - A small selections and layers tutorial
+ - Quick start guides
+ - Crop an area and save it as a new image
+ - Draw a rectangle on you picture
+
+- Layers
+ - General information
+ - Adjustment layers ([TODO] elaborate)
+
+- Selections
+ - Making a selection
+ - Painting your selection
+ - Unselecting
+ - Making a new selection
+ - Selecting a contiguous area (magic wand)
+ - Selecting similar colors
+ - Inverting the selection
+
+- Filters
+
+- Colorspaces
+ - Introduction to colorspaces
+ - Available colorspaces
+
+- Commands ([TODO] make up-to-date)
+ - General tqlayout
+ - Menus
+ - Toolbars
+ - Palettes
+ - Dialogs
+
+- Settings
+
+- Scripting
+
+- FAQ
+
+- Credits
+
+- Installation
+
+----------------------------------------------------------------------
+
+An outline of the manual content as in chalk.kwd:
+
+- Introduction
+ - About the manual
+ - About the author
+- Showing Off
+ - Intro tutorial
+- On the face of it
+ - Layout
+ - Menus
+- Files
+- Serious about color
+ - Colour theory
+- Selections
+ - Creating selections (select, unselect, wand)
+- Messing with images
+- Painting
+- Layers
+- Filters
+- Hacking Chalk
+- Configuring Chalk
+- Help!
+ - Help contact info
+
+
diff --git a/chalk/doc/histograms.xmi b/chalk/doc/histograms.xmi
new file mode 100644
index 000000000..209a795dd
--- /dev/null
+++ b/chalk/doc/histograms.xmi
@@ -0,0 +1,4145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" timestamp="2005-10-14T11:43:50" xmi.version="1.2" >
+ <XMI.header>
+ <XMI.documentation>
+ <XMI.exporter>umbrello uml modeller http://uml.sf.net</XMI.exporter>
+ <XMI.exporterVersion>1.4.2</XMI.exporterVersion>
+ <XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
+ </XMI.documentation>
+ <XMI.metamodel xmi.name="UML" href="UML.xml" xmi.version="1.3" />
+ </XMI.header>
+ <XMI.content>
+ <UML:Model isSpecification="false" isLeaf="false" isRoot="false" isAbstract="false" >
+ <UML:Namespace.ownedElement>
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="3" isRoot="false" isAbstract="false" name="datatype" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="60" isRoot="false" isAbstract="false" name="typedef" />
+ <UML:Stereotype isSpecification="false" isLeaf="false" visibility="public" xmi.id="484" isRoot="false" isAbstract="false" name="enum" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="2" isRoot="false" isAbstract="false" name="int" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="4" isRoot="false" isAbstract="false" name="char" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="5" isRoot="false" isAbstract="false" name="bool" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="6" isRoot="false" isAbstract="false" name="float" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="7" isRoot="false" isAbstract="false" name="double" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="8" isRoot="false" isAbstract="false" name="long" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="9" isRoot="false" isAbstract="false" name="short" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="10" isRoot="false" isAbstract="false" name="string" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="20" isRoot="false" isAbstract="false" name="void" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="24" isRoot="false" isAbstract="false" name="KisRectIteratorPixel&amp;" elementReference="11" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="27" isRoot="false" isAbstract="false" name="KisColorSpace*" elementReference="26" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="38" isRoot="false" isAbstract="false" name="const KisID&amp;" elementReference="37" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="41" isRoot="false" isAbstract="false" name="QValueVector&lt; KisChannelInfo * >" elementReference="40" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="72" isRoot="false" isAbstract="false" name="KisGenericRegistry&lt; KisHistogramProducerFactory * >" elementReference="71" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="78" isRoot="false" isAbstract="false" name="KisHistogramProducerFactoryRegistry*" elementReference="70" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="84" isRoot="false" isAbstract="false" name="const KisHistogramProducerFactoryRegistry&amp;" elementReference="70" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="236" isRoot="false" isAbstract="false" name="KisDataManager*" elementReference="233" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="245" isRoot="false" isAbstract="false" name="const KisRectIterator&amp;" elementReference="234" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="249" isRoot="false" isAbstract="false" name="KisRectIterator&amp;" elementReference="234" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="252" isRoot="false" isAbstract="false" name="Q_UINT8*" elementReference="251" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="254" isRoot="false" isAbstract="false" name="const Q_UINT8*" elementReference="251" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="272" isRoot="false" isAbstract="false" name="const KisHLineIterator&amp;" elementReference="263" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="276" isRoot="false" isAbstract="false" name="KisHLineIterator&amp;" elementReference="263" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="297" isRoot="false" isAbstract="false" name="const KisVLineIterator&amp;" elementReference="288" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="301" isRoot="false" isAbstract="false" name="KisVLineIterator&amp;" elementReference="288" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="313" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl*" elementReference="312" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="316" isRoot="false" isAbstract="false" name="_iTp*" elementReference="315" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="320" isRoot="false" isAbstract="false" name="const KisIteratorPixelTrait&amp;" elementReference="309" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="324" isRoot="false" isAbstract="false" name="KisIteratorPixelTrait&amp;" elementReference="309" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="358" isRoot="false" isAbstract="false" name="const KisHLineIteratorPixel&amp;" elementReference="340" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="362" isRoot="false" isAbstract="false" name="KisHLineIteratorPixel&amp;" elementReference="340" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="388" isRoot="false" isAbstract="false" name="const KisVLineIteratorPixel&amp;" elementReference="370" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="392" isRoot="false" isAbstract="false" name="KisVLineIteratorPixel&amp;" elementReference="370" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="416" isRoot="false" isAbstract="false" name="const KisRectIteratorPixel&amp;" elementReference="11" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="511" isRoot="false" isAbstract="false" name="const enumHistogramType" elementReference="483" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="569" isRoot="false" isAbstract="false" name="Q_INT32&amp;" elementReference="43" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="576" isRoot="false" isAbstract="false" name="KisTiledDataManager*" elementReference="559" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="578" isRoot="false" isAbstract="false" name="KisTile**" elementReference="558" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="585" isRoot="false" isAbstract="false" name="DeletedTile*" elementReference="582" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="593" isRoot="false" isAbstract="false" name="KisTile*" elementReference="558" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="603" isRoot="false" isAbstract="false" name="KisTile&amp;" elementReference="558" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="629" isRoot="false" isAbstract="false" name="const KisTile&amp;" elementReference="558" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="638" isRoot="false" isAbstract="false" name="const Q_INT32" elementReference="43" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="652" isRoot="false" isAbstract="false" name="const KisTiledDataManager&amp;" elementReference="559" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="656" isRoot="false" isAbstract="false" name="KisTiledDataManager&amp;" elementReference="559" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="667" isRoot="false" isAbstract="false" name="KoStore*" elementReference="643" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="773" isRoot="false" isAbstract="false" name="Q_INT32*" elementReference="43" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="787" isRoot="false" isAbstract="false" name="const KisDataManager&amp;" elementReference="233" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="814" isRoot="false" isAbstract="false" name="const QRect&amp;" elementReference="813" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="894" isRoot="false" isAbstract="false" name="KisDoc*" elementReference="878" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="899" isRoot="false" isAbstract="false" name="const QString&amp;" elementReference="12" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="902" isRoot="false" isAbstract="false" name="const KisImage&amp;" elementReference="425" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="906" isRoot="false" isAbstract="false" name="KisImageIface*" elementReference="883" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="913" isRoot="false" isAbstract="false" name="QPainter&amp;" elementReference="912" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="915" isRoot="false" isAbstract="false" name="KisProfile*" elementReference="884" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="943" isRoot="false" isAbstract="false" name="KisProgressDisplayInterface*" elementReference="885" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="945" isRoot="false" isAbstract="false" name="KisFilterStrategy*" elementReference="882" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="959" isRoot="false" isAbstract="false" name="const KisProfile*" elementReference="884" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="962" isRoot="false" isAbstract="false" name="KoCommandHistory*" elementReference="873" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="977" isRoot="false" isAbstract="false" name="const vKisLayerSP&amp;" elementReference="436" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="988" isRoot="false" isAbstract="false" name="const KisCompositeOp&amp;" elementReference="880" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1008" isRoot="false" isAbstract="false" name="const KisLayerSP" elementReference="435" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1018" isRoot="false" isAbstract="false" name="const KisLayerSP&amp;" elementReference="435" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1045" isRoot="false" isAbstract="false" name="KCommand*" elementReference="879" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1063" isRoot="false" isAbstract="false" name="KisUndoAdapter*" elementReference="875" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1066" isRoot="false" isAbstract="false" name="KisGuideMgr*" elementReference="1065" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1101" isRoot="false" isAbstract="false" name="KisImage&amp;" elementReference="425" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1128" isRoot="false" isAbstract="false" name="KisNameServer*" elementReference="874" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1158" isRoot="false" isAbstract="false" name="KisImage*" elementReference="425" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1163" isRoot="false" isAbstract="false" name="const KisPaintDeviceImpl&amp;" elementReference="312" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1167" isRoot="false" isAbstract="false" name="DCOPObject*" elementReference="877" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1176" isRoot="false" isAbstract="false" name="const QPoint&amp;" elementReference="1139" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1181" isRoot="false" isAbstract="false" name="KNamedCommand*" elementReference="1141" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1183" isRoot="false" isAbstract="false" name="const bool" elementReference="5" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1249" isRoot="false" isAbstract="false" name="const QImage&amp;" elementReference="925" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1268" isRoot="false" isAbstract="false" name="QColor*" elementReference="1267" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1274" isRoot="false" isAbstract="false" name="KisColor*" elementReference="881" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1282" isRoot="false" isAbstract="false" name="const QColor&amp;" elementReference="1267" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1288" isRoot="false" isAbstract="false" name="const KisColor&amp;" elementReference="881" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1315" isRoot="false" isAbstract="false" name="const KisImage*" elementReference="425" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1379" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl&amp;" elementReference="312" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1392" isRoot="false" isAbstract="false" name="KisScaleVisitor&amp;" elementReference="1143" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1395" isRoot="false" isAbstract="false" name="KisRotateVisitor&amp;" elementReference="1142" />
+ <UML:DataType stereotype="3" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1417" isRoot="false" isAbstract="false" name="const KisLayer&amp;" elementReference="434" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="11" isRoot="false" isAbstract="false" name="KisRectIteratorPixel" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="398" />
+ <UML:Generalization xmi.idref="401" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="423" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsetx" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="424" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsety" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="404" isRoot="false" isAbstract="false" name="KisRectIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="405" isRoot="false" value="" type="313" isAbstract="false" name="ndevice" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="406" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="407" isRoot="false" value="" type="236" isAbstract="false" name="sel_dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="408" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="409" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="410" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="411" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="412" isRoot="false" value="" type="43" isAbstract="false" name="offsetx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="413" isRoot="false" value="" type="43" isAbstract="false" name="offsety" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="414" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="415" isRoot="false" isAbstract="false" name="KisRectIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="417" isRoot="false" value="" type="416" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="418" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17003" type="24" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="419" isRoot="false" value="" type="416" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="420" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17004" type="24" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="421" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17005" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="422" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17006" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="12" isRoot="false" isAbstract="false" name=TQSTRING_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="13" isRoot="false" isAbstract="false" name="KisChannelInfo" />
+ <UML:Class comment="This class is an interface used in the generation of a histogram. It is a container of
+data, all mathematically interesting things will calculated by a KisHistogram.
+
+The default view will be the entire range each color can be in. And don't let the
+numberOfBins return anything else then 256 unless you have a very good reason for it.
+
+About the views: a view is a zoom combined with a start level: the entire
+range of a channel is 0.0 - 1.0: this is the position. Combined with a zoom, we can
+calculate what part of a channel will fall in a bin. This gives us an interface to
+that the views that is not dependent of the actual colorspace of the histogram.
+The 'size' value is the size, again from 0.0 to 1.0 of the displayed range.
+
+For comfort of the GUI, and because it is logical, channels are accessed in the order
+in which they are found in the channels() method. This is potentially different from
+the order in which they are internally ordered!" isSpecification="false" isLeaf="false" visibility="public" xmi.id="14" isRoot="false" isAbstract="false" name="KisHistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="16" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="57" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_skipTransparent" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="58" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_skipUnselected" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="19" isRoot="false" isAbstract="false" name="KisHistogramProducer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="21" isRoot="false" isAbstract="false" name="~ KisHistogramProducer" />
+ <UML:Operation comment="// Methods to change the bins/** Clears the data in this producer, but keeps its other settings" isSpecification="false" isLeaf="false" visibility="public" xmi.id="22" isRoot="false" isAbstract="true" name="clear" />
+ <UML:Operation comment="Iterates over the rectangle specified by the iterator, on a piece with the colorspace.
+The producer may only read the iterator, it may safely be constructed with write = false" isSpecification="false" isLeaf="false" visibility="public" xmi.id="23" isRoot="false" isAbstract="true" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="25" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="28" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Methods to set what exactly is being added to the bins" isSpecification="false" isLeaf="false" visibility="public" xmi.id="29" isRoot="false" isAbstract="true" name="setView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="30" isRoot="false" value="" type="7" isAbstract="false" name="from" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="31" isRoot="false" value="" type="7" isAbstract="false" name="width" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="32" isRoot="false" isAbstract="false" name="setSkipTransparent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="33" isRoot="false" value="" type="5" isAbstract="false" name="set" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="34" isRoot="false" isAbstract="false" name="setSkipUnselected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="35" isRoot="false" value="" type="5" isAbstract="false" name="set" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Methods with general information about this specific producer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="36" isRoot="false" isAbstract="true" name="id" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17007" type="38" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="39" isRoot="false" isAbstract="true" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17008" type="41" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="42" isRoot="false" isAbstract="true" name="numberOfBins" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17009" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="44" isRoot="false" isAbstract="true" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17010" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="45" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="46" isRoot="false" isAbstract="true" name="viewFrom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17011" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="47" isRoot="false" isAbstract="true" name="viewWidth" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17012" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="48" isRoot="false" isAbstract="true" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17013" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Methods to get information on the data we have seen" isSpecification="false" isLeaf="false" visibility="public" xmi.id="49" isRoot="false" isAbstract="true" name="count" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17014" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="50" isRoot="false" isAbstract="true" name="getBinAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17015" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="51" isRoot="false" value="" type="43" isAbstract="false" name="channel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="52" isRoot="false" value="" type="43" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="53" isRoot="false" isAbstract="true" name="outOfViewLeft" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17016" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="54" isRoot="false" value="" type="43" isAbstract="false" name="channel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="55" isRoot="false" isAbstract="true" name="outOfViewRight" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17017" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="56" isRoot="false" value="" type="43" isAbstract="false" name="channel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="15" isRoot="false" isAbstract="false" name="KShared" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="26" isRoot="false" isAbstract="false" name="KisColorSpace" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="37" isRoot="false" isAbstract="false" name="KisID" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="40" isRoot="false" isAbstract="false" name="QValueVector" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="43" isRoot="false" isAbstract="false" name="Q_INT32" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="59" isRoot="false" isAbstract="false" name="KisHistogramProducerSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="61" isRoot="false" isAbstract="false" name="KisHistogramProducerFactory" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="69" isRoot="false" initialValue="" type="37" isAbstract="false" name="m_id" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="62" isRoot="false" isAbstract="false" name="KisHistogramProducerFactory" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="63" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="64" isRoot="false" isAbstract="false" name="~ KisHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="65" isRoot="false" isAbstract="true" name="generate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17018" type="59" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="66" isRoot="false" isAbstract="true" name="isCompatibleWith" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17019" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="67" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="68" isRoot="false" isAbstract="false" name="id" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17020" type="38" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="70" isRoot="false" isAbstract="false" name="KisHistogramProducerFactoryRegistry" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="73" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="88" isRoot="false" initialValue="" type="78" isAbstract="false" name="m_singleton" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="76" isRoot="false" isAbstract="false" name="~ KisHistogramProducerFactoryRegistry" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="77" isRoot="false" isAbstract="false" name="instance" ownerScope="classifier" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17021" type="78" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="79" isRoot="false" isAbstract="false" name="listKeysCompatibleWith" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17022" type="81" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="80" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="82" isRoot="false" isAbstract="false" name="KisHistogramProducerFactoryRegistry" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="83" isRoot="false" isAbstract="false" name="KisHistogramProducerFactoryRegistry" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="85" isRoot="false" value="" type="84" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="86" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17023" type="70" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="87" isRoot="false" value="" type="84" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="71" isRoot="false" isAbstract="false" name="KisGenericRegistry" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="81" isRoot="false" isAbstract="false" name="KisIDList" />
+ <UML:Class comment=" Copyright (c) 2005 Bart Coppens &lt;kde@bartcoppens.be>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="89" isRoot="false" isAbstract="false" name="KisBasicHistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="90" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="120" isRoot="false" initialValue="" type="40" isAbstract="false" name="m_bins" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="121" isRoot="false" initialValue="" type="119" isAbstract="false" name="m_outLeft" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="122" isRoot="false" initialValue="" type="119" isAbstract="false" name="m_outRight" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="123" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_from" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="124" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_width" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="125" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_count" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="126" isRoot="false" initialValue="" type="2" isAbstract="false" name="m_channels" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="127" isRoot="false" initialValue="" type="2" isAbstract="false" name="m_nrOfBins" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="128" isRoot="false" initialValue="" type="27" isAbstract="false" name="m_colorSpace" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="129" isRoot="false" initialValue="" type="37" isAbstract="false" name="m_id" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="130" isRoot="false" initialValue="" type="40" isAbstract="false" name="m_external" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="93" isRoot="false" isAbstract="false" name="KisBasicHistogramProducer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="94" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="95" isRoot="false" value="" type="2" isAbstract="false" name="channels" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="96" isRoot="false" value="" type="2" isAbstract="false" name="nrOfBins" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="97" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="98" isRoot="false" isAbstract="false" name="~ KisBasicHistogramProducer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="99" isRoot="false" isAbstract="false" name="clear" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="100" isRoot="false" isAbstract="false" name="setView" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="101" isRoot="false" value="" type="7" isAbstract="false" name="from" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="102" isRoot="false" value="" type="7" isAbstract="false" name="size" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="103" isRoot="false" isAbstract="false" name="id" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17024" type="38" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="104" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17025" type="41" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="105" isRoot="false" isAbstract="false" name="numberOfBins" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17026" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="106" isRoot="false" isAbstract="false" name="viewFrom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17027" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="107" isRoot="false" isAbstract="false" name="viewWidth" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17028" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="108" isRoot="false" isAbstract="false" name="count" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17029" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="109" isRoot="false" isAbstract="false" name="getBinAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17030" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="110" isRoot="false" value="" type="2" isAbstract="false" name="channel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="111" isRoot="false" value="" type="2" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="112" isRoot="false" isAbstract="false" name="outOfViewLeft" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17031" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="113" isRoot="false" value="" type="2" isAbstract="false" name="channel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="114" isRoot="false" isAbstract="false" name="outOfViewRight" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17032" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="115" isRoot="false" value="" type="2" isAbstract="false" name="channel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="116" isRoot="false" isAbstract="false" name="externalToInternal" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17033" type="2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="117" isRoot="false" value="" type="2" isAbstract="false" name="ext" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// not virtual since that is useless: we call it from constructor" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="118" isRoot="false" isAbstract="false" name="makeExternalToInternal" />
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="119" isRoot="false" isAbstract="false" name="vBins" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="131" isRoot="false" isAbstract="false" name="KisBasicU8HistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="132" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="135" isRoot="false" isAbstract="false" name="KisBasicU8HistogramProducer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="136" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="137" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="138" isRoot="false" isAbstract="false" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="139" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="140" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="141" isRoot="false" isAbstract="false" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17034" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="142" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="143" isRoot="false" isAbstract="false" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17035" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="144" isRoot="false" isAbstract="false" name="KisBasicU16HistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="145" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="148" isRoot="false" isAbstract="false" name="KisBasicU16HistogramProducer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="149" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="150" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="151" isRoot="false" isAbstract="false" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="152" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="153" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="154" isRoot="false" isAbstract="false" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17036" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="155" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="156" isRoot="false" isAbstract="false" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17037" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="157" isRoot="false" isAbstract="false" name="KisBasicF32HistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="158" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="161" isRoot="false" isAbstract="false" name="KisBasicF32HistogramProducer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="162" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="163" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="164" isRoot="false" isAbstract="false" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="165" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="166" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="167" isRoot="false" isAbstract="false" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17038" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="168" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="169" isRoot="false" isAbstract="false" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17039" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="170" isRoot="false" isAbstract="false" name="KisBasicHistogramProducerFactory" >
+ <UML:ModelElement.templateParameter>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="171" isRoot="false" isAbstract="false" name="T" />
+ </UML:ModelElement.templateParameter>
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="172" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="182" isRoot="false" initialValue="" type="27" isAbstract="false" name="m_cs" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="175" isRoot="false" isAbstract="false" name="KisBasicHistogramProducerFactory" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="176" isRoot="false" value="" type="38" isAbstract="false" name="id" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="177" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="178" isRoot="false" isAbstract="false" name="~ KisBasicHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="179" isRoot="false" isAbstract="false" name="generate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17040" type="59" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="180" isRoot="false" isAbstract="false" name="isCompatibleWith" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17041" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="181" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="171" isRoot="false" isAbstract="false" name="T" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class comment="This is a Producer (with associated factory) that converts the pixels of the colorspace
+to RGB8 with toQColor, and then does its counting on RGB. This is NOT registered with the
+Registry, because it isCompatibleWith all colorspaces, and should only be used in extreme
+cases (like no other producer being available" isSpecification="false" isLeaf="false" visibility="public" xmi.id="183" isRoot="false" isAbstract="false" name="KisGenericRGBHistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="184" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="195" isRoot="false" initialValue="" type="41" isAbstract="false" name="m_channelsList" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="187" isRoot="false" isAbstract="false" name="KisGenericRGBHistogramProducer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="188" isRoot="false" isAbstract="false" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="189" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="190" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="191" isRoot="false" isAbstract="false" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17042" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="192" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="193" isRoot="false" isAbstract="false" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17043" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="194" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17044" type="41" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="KisGenericRGBHistogramProducer his special Factory that isCompatibleWith everything." isSpecification="false" isLeaf="false" visibility="public" xmi.id="196" isRoot="false" isAbstract="false" name="KisGenericRGBHistogramProducerFactory" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="197" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="200" isRoot="false" isAbstract="false" name="KisGenericRGBHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="201" isRoot="false" isAbstract="false" name="~ KisGenericRGBHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="202" isRoot="false" isAbstract="false" name="generate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17045" type="59" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="203" isRoot="false" isAbstract="false" name="isCompatibleWith" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17046" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="204" isRoot="false" value="" type="27" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="This is a Producer (with associated factory) that converts the pixels of the colorspace
+to LAB, and then does its counting on the L channel also known as lightnessRGB.
+It isCompatibleWith all colorspaces" isSpecification="false" isLeaf="false" visibility="public" xmi.id="205" isRoot="false" isAbstract="false" name="KisGenericLightnessHistogramProducer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="206" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="217" isRoot="false" initialValue="" type="41" isAbstract="false" name="m_channelsList" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="209" isRoot="false" isAbstract="false" name="KisGenericLightnessHistogramProducer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="210" isRoot="false" isAbstract="false" name="addRegionToBin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="211" isRoot="false" value="" type="24" isAbstract="false" name="it" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="212" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="213" isRoot="false" isAbstract="false" name="positionToString" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17047" type="12" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="214" isRoot="false" value="" type="7" isAbstract="false" name="pos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="215" isRoot="false" isAbstract="false" name="maximalZoom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17048" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="216" isRoot="false" isAbstract="false" name="channels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17049" type="41" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="KisGenericLightnessHistogramProducer his special Factory that isCompatibleWith everything." isSpecification="false" isLeaf="false" visibility="public" xmi.id="218" isRoot="false" isAbstract="false" name="KisGenericLightnessHistogramProducerFactory" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="219" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="222" isRoot="false" isAbstract="false" name="KisGenericLightnessHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="223" isRoot="false" isAbstract="false" name="~ KisGenericLightnessHistogramProducerFactory" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="224" isRoot="false" isAbstract="false" name="generate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17050" type="59" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="225" isRoot="false" isAbstract="false" name="isCompatibleWith" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17051" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="226" isRoot="false" value="" type="27" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="227" isRoot="false" isAbstract="false" name="KisTiledRectIterator" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="228" isRoot="false" isAbstract="false" name="KisTiledRectIteratorSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="229" isRoot="false" isAbstract="false" name="KisTiledVLineIterator" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="230" isRoot="false" isAbstract="false" name="KisTiledVLineIteratorSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="231" isRoot="false" isAbstract="false" name="KisTiledHLineIterator" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="232" isRoot="false" isAbstract="false" name="KisTiledHLineIteratorSP" />
+ <UML:Class comment="// Change the following two lines to switch (at compiletime) to another datamanager/**
+KisDataManager defines the interface that modules responsible for
+storing and retrieving data must inmplement. Data modules, like
+the tile manager, are responsible for:
+
+* Storing undo/redo data
+* Offering ordererd and unordered iterators over rects of pixels
+* (eventually) efficiently loading and saving data in a format
+that may allow deferred loading.
+
+A datamanager knows nothing about the type of pixel data except
+how many Q_UINT8's a single pixel takes." isSpecification="false" isLeaf="false" visibility="public" xmi.id="233" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="780" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="783" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="784" isRoot="false" value="" type="497" isAbstract="false" name="pixelSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="785" isRoot="false" value="" type="254" isAbstract="false" name="defPixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="786" isRoot="false" isAbstract="false" name="KisDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="788" isRoot="false" value="" type="787" isAbstract="false" name="dm" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="789" isRoot="false" isAbstract="false" name="setDefaultPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="790" isRoot="false" value="" type="254" isAbstract="false" name="defPixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="791" isRoot="false" isAbstract="false" name="defaultPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17052" type="254" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="792" isRoot="false" isAbstract="false" name="getMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17053" type="561" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="793" isRoot="false" isAbstract="false" name="rollback" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="794" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="795" isRoot="false" isAbstract="false" name="rollforward" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="796" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="797" isRoot="false" isAbstract="false" name="write" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17054" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="798" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="799" isRoot="false" isAbstract="false" name="read" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17055" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="800" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="801" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17056" type="497" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="802" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="803" isRoot="false" value="" type="569" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="804" isRoot="false" value="" type="569" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="805" isRoot="false" value="" type="569" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="806" isRoot="false" value="" type="569" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="807" isRoot="false" isAbstract="false" name="setExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="808" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="809" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="810" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="811" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="812" isRoot="false" isAbstract="false" name="setExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="815" isRoot="false" value="" type="814" isAbstract="false" name="rect" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="816" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="817" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="818" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="819" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="820" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="821" isRoot="false" value="" type="251" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="822" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="823" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="824" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="825" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="826" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="827" isRoot="false" value="" type="252" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="828" isRoot="false" isAbstract="false" name="clear" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="829" isRoot="false" isAbstract="false" name="paste" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="830" isRoot="false" value="" type="642" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="831" isRoot="false" value="" type="43" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="832" isRoot="false" value="" type="43" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="833" isRoot="false" value="" type="43" isAbstract="false" name="dx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="834" isRoot="false" value="" type="43" isAbstract="false" name="dy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="835" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="836" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="837" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17057" type="254" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="838" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="839" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="840" isRoot="false" isAbstract="false" name="writablePixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17058" type="252" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="841" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="842" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="843" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="844" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="845" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="846" isRoot="false" value="" type="254" isAbstract="false" name="data" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="847" isRoot="false" isAbstract="false" name="readBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="848" isRoot="false" value="" type="252" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="849" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="850" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="851" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="852" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="853" isRoot="false" isAbstract="false" name="writeBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="854" isRoot="false" value="" type="254" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="855" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="856" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="857" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="858" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="859" isRoot="false" isAbstract="false" name="numContiguousColumns" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17059" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="860" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="861" isRoot="false" value="" type="43" isAbstract="false" name="minY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="862" isRoot="false" value="" type="43" isAbstract="false" name="maxY" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="863" isRoot="false" isAbstract="false" name="numContiguousRows" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17060" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="864" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="865" isRoot="false" value="" type="43" isAbstract="false" name="minX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="866" isRoot="false" value="" type="43" isAbstract="false" name="maxX" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="867" isRoot="false" isAbstract="false" name="rowStride" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17061" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="868" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="869" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="The KisRectIterator iterators over a rectangular area in the most efficient order. That is,
+there is no guarantee that the iterator will work scanline by scanline." isSpecification="false" isLeaf="false" visibility="public" xmi.id="234" isRoot="false" isAbstract="false" name="KisRectIterator" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="262" isRoot="false" initialValue="" type="228" isAbstract="false" name="m_iter" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="235" isRoot="false" isAbstract="false" name="KisRectIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="237" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="238" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="239" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="240" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="241" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="242" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="243" isRoot="false" isAbstract="false" name="~ KisRectIterator" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="244" isRoot="false" isAbstract="false" name="KisRectIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="246" isRoot="false" value="" type="245" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="247" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17062" type="249" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="248" isRoot="false" value="" type="245" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// returns a pointer to the pixel data. Do NOT interpret the data - leave that to a colorstrategy" isSpecification="false" isLeaf="false" visibility="public" xmi.id="250" isRoot="false" isAbstract="false" name="rawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17063" type="252" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns a pointer to the pixel data as it was at the moment of the last memento creation." isSpecification="false" isLeaf="false" visibility="public" xmi.id="253" isRoot="false" isAbstract="false" name="oldRawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17064" type="254" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns the number of consequtive pixels that we point at/// This is useful for optimizing" isSpecification="false" isLeaf="false" visibility="public" xmi.id="255" isRoot="false" isAbstract="false" name="nConseqPixels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17065" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Advances a number of pixels until it reaches the end of the rect" isSpecification="false" isLeaf="false" visibility="public" xmi.id="256" isRoot="false" isAbstract="false" name="operator +=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17066" type="249" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="257" isRoot="false" value="" type="2" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Advances one pixel going to the beginning of the next line when it reaches the end of a line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="258" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17067" type="249" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// returns true when iterators has reached the end" isSpecification="false" isLeaf="false" visibility="public" xmi.id="259" isRoot="false" isAbstract="false" name="isDone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17068" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current x position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="260" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17069" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current y position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="261" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17070" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="251" isRoot="false" isAbstract="false" name="Q_UINT8" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="263" isRoot="false" isAbstract="false" name="KisHLineIterator" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="287" isRoot="false" initialValue="" type="232" isAbstract="false" name="m_iter" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="264" isRoot="false" isAbstract="false" name="KisHLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="265" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="266" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="267" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="268" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="269" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="270" isRoot="false" isAbstract="false" name="~ KisHLineIterator" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="271" isRoot="false" isAbstract="false" name="KisHLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="273" isRoot="false" value="" type="272" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="274" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17071" type="276" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="275" isRoot="false" value="" type="272" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns a pointer to the pixel data. Do NOT interpret the data - leave that to a colorstrategy" isSpecification="false" isLeaf="false" visibility="public" xmi.id="277" isRoot="false" isAbstract="false" name="rawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17072" type="252" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns a pointer to the pixel data as it was at the moment of the last memento creation." isSpecification="false" isLeaf="false" visibility="public" xmi.id="278" isRoot="false" isAbstract="false" name="oldRawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17073" type="254" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Advances one pixel until it reaches the end of the line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="279" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17074" type="276" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns the number of consequtive horizontal pixels that we point at/// This is useful for optimizing" isSpecification="false" isLeaf="false" visibility="public" xmi.id="280" isRoot="false" isAbstract="false" name="nConseqHPixels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17075" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Advances a number of pixels until it reaches the end of the line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="281" isRoot="false" isAbstract="false" name="operator +=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17076" type="276" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="282" isRoot="false" value="" type="2" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Goes back one pixel until it reaches the beginning of the line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="283" isRoot="false" isAbstract="false" name="operator --" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17077" type="276" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// returns true when iterators has reached the end" isSpecification="false" isLeaf="false" visibility="public" xmi.id="284" isRoot="false" isAbstract="false" name="isDone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17078" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current x position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="285" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17079" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current y position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="286" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17080" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="288" isRoot="false" isAbstract="false" name="KisVLineIterator" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="308" isRoot="false" initialValue="" type="230" isAbstract="false" name="m_iter" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="289" isRoot="false" isAbstract="false" name="KisVLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="290" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="291" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="292" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="293" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="294" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="295" isRoot="false" isAbstract="false" name="~ KisVLineIterator" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="296" isRoot="false" isAbstract="false" name="KisVLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="298" isRoot="false" value="" type="297" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="299" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17081" type="301" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="300" isRoot="false" value="" type="297" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// returns a pointer to the pixel data. Do NOT interpret the data - leave that to a colorstrategy" isSpecification="false" isLeaf="false" visibility="public" xmi.id="302" isRoot="false" isAbstract="false" name="rawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17082" type="252" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Returns a pointer to the pixel data as it was at the moment of the last memento creation." isSpecification="false" isLeaf="false" visibility="public" xmi.id="303" isRoot="false" isAbstract="false" name="oldRawData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17083" type="254" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Advances one pixel until it reaches the end of the line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="304" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17084" type="301" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// returns true when iterators has reached the end" isSpecification="false" isLeaf="false" visibility="public" xmi.id="305" isRoot="false" isAbstract="false" name="isDone" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17085" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current x position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="306" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17086" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// current y position" isSpecification="false" isLeaf="false" visibility="public" xmi.id="307" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17087" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="309" isRoot="false" isAbstract="false" name="KisIteratorPixelTrait" >
+ <UML:ModelElement.templateParameter>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="310" isRoot="false" isAbstract="false" name="_iTp" />
+ </UML:ModelElement.templateParameter>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="333" isRoot="false" initialValue="" type="313" isAbstract="false" name="m_device" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="338" isRoot="false" initialValue="" type="316" isAbstract="false" name="m_underlyingIterator" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="339" isRoot="false" initialValue="" type="316" isAbstract="false" name="m_selectionIterator" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="311" isRoot="false" isAbstract="false" name="KisIteratorPixelTrait" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="314" isRoot="false" value="" type="313" isAbstract="false" name="ndevice" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="317" isRoot="false" value="" type="316" isAbstract="false" name="underlyingIterator" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="318" isRoot="false" isAbstract="false" name="~ KisIteratorPixelTrait" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="319" isRoot="false" isAbstract="false" name="KisIteratorPixelTrait" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="321" isRoot="false" value="" type="320" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="322" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17088" type="324" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="323" isRoot="false" value="" type="320" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="325" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17089" type="326" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="327" isRoot="false" isAbstract="false" name="oldPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17090" type="328" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="329" isRoot="false" isAbstract="false" name="operator [ ]" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17091" type="251" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="330" isRoot="false" value="" type="2" isAbstract="false" name="index" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="331" isRoot="false" isAbstract="false" name="isSelected" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17092" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="332" isRoot="false" isAbstract="false" name="selectedness" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17093" type="251" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="334" isRoot="false" isAbstract="false" name="advance" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="335" isRoot="false" value="" type="2" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="336" isRoot="false" isAbstract="false" name="setSelectionIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="337" isRoot="false" value="" type="316" isAbstract="false" name="si" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:TemplateParameter isSpecification="false" isLeaf="false" visibility="public" xmi.id="310" isRoot="false" isAbstract="false" name="_iTp" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class comment="Class modelled on QPaintDevice." isSpecification="false" isLeaf="false" visibility="public" xmi.id="312" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1144" />
+ <UML:Generalization xmi.idref="1148" />
+ <UML:Generalization xmi.idref="1151" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1380" isRoot="false" initialValue="" type="642" isAbstract="false" name="m_datamanager" />
+ <UML:Attribute comment="// This is not a shared pointer by design. A layer does not own its containing image,// the image owns its layers. This allows the image and its layers to be destroyed// when the last reference to the image is removed. If the layers kept references,// a cycle would be created, and removing the last external reference to the image would not// destroy the objects." isSpecification="false" isLeaf="false" visibility="private" xmi.id="1381" isRoot="false" initialValue="" type="1158" isAbstract="false" name="m_owner" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1382" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_extentIsValid" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1383" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_x" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1384" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_y" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1385" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_visible" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1386" isRoot="false" initialValue="" type="12" isAbstract="false" name="m_name" />
+ <UML:Attribute comment="// Operation used to composite this layer with the layers _under_ this layer" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1387" isRoot="false" initialValue="" type="880" isAbstract="false" name="m_compositeOp" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1388" isRoot="false" initialValue="" type="27" isAbstract="false" name="m_colorSpace" />
+ <UML:Attribute comment="// Cached for quick access" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1389" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_pixelSize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1390" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_nChannels" />
+ <UML:Attribute comment="// Whether the selection is active" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1397" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_hasSelection" />
+ <UML:Attribute comment="// Contains the actual selection. For now, there can be only// one selection per layer. XXX: is this a limitation?" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1398" isRoot="false" initialValue="" type="445" isAbstract="false" name="m_selection" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1399" isRoot="false" initialValue="" type="1167" isAbstract="false" name="m_dcop" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1154" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1155" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1156" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1157" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1159" isRoot="false" value="" type="1158" isAbstract="false" name="img" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1160" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1161" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1162" isRoot="false" isAbstract="false" name="KisPaintDeviceImpl" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1164" isRoot="false" value="" type="1163" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1165" isRoot="false" isAbstract="false" name="~ KisPaintDeviceImpl" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1166" isRoot="false" isAbstract="false" name="dcopObject" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17094" type="1167" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1168" isRoot="false" isAbstract="false" name="write" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17095" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1169" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1170" isRoot="false" isAbstract="false" name="read" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17096" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1171" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1172" isRoot="false" isAbstract="false" name="move" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1173" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1174" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1175" isRoot="false" isAbstract="false" name="move" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1177" isRoot="false" value="" type="1176" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1178" isRoot="false" isAbstract="false" name="moveCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17097" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1179" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1180" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1182" isRoot="false" isAbstract="false" name="visible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17098" type="1183" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1184" isRoot="false" isAbstract="false" name="setVisible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1185" isRoot="false" value="" type="5" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1186" isRoot="false" isAbstract="false" name="setVisibleCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17099" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1187" isRoot="false" value="" type="5" isAbstract="false" name="visible" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1188" isRoot="false" isAbstract="false" name="tqcontains" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17100" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1189" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1190" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1191" isRoot="false" isAbstract="false" name="tqcontains" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17101" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1192" isRoot="false" value="" type="1176" isAbstract="false" name="pt" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Retrieve the bounds of the paint device. The size is not exact,
+but may be larger if the underlying datamanager works that way.
+For instance, the tiled datamanager keeps the extent to the nearest
+multiple of 64." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1193" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1194" isRoot="false" value="" type="569" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1195" isRoot="false" value="" type="569" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1196" isRoot="false" value="" type="569" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1197" isRoot="false" value="" type="569" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1198" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17102" type="813" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="XXX: This should be a temporay hack, awaiting a proper fix.
+
+Indicates whether the extent really represents the extent. For example,
+the KisBackground checkerboard pattern is generated by filling the
+default tile but it will return an empty extent." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1199" isRoot="false" isAbstract="false" name="extentIsValid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17103" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1200" isRoot="false" isAbstract="false" name="setExtentIsValid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1201" isRoot="false" value="" type="5" isAbstract="false" name="isValid" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the exact bounds of this paint device. This may be very slow,
+especially on larger paint devices because it does a linear scanline search." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1202" isRoot="false" isAbstract="false" name="exactBounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1203" isRoot="false" value="" type="569" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1204" isRoot="false" value="" type="569" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1205" isRoot="false" value="" type="569" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1206" isRoot="false" value="" type="569" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1207" isRoot="false" isAbstract="false" name="exactBounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17104" type="813" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1208" isRoot="false" isAbstract="false" name="crop" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1209" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1210" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1211" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1212" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1213" isRoot="false" isAbstract="false" name="crop" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1214" isRoot="false" value="" type="813" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1215" isRoot="false" isAbstract="false" name="clear" />
+ <UML:Operation comment="Read the bytes representing the rectangle described by x, y, w, h into
+data. If data is not big enough, Chalk will gladly overwrite the rest
+of your precious memory.
+
+Since this is a copy, you need to make sure you have enough memory.
+
+Reading from areas not previously initialized will read the default
+pixel value into data." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1216" isRoot="false" isAbstract="false" name="readBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1217" isRoot="false" value="" type="252" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1218" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1219" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1220" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1221" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Copy the bytes in data into the rect specified by x, y, w, h. If there
+data is too small or uninitialized, Chalk will happily read parts of
+memory you never wanted to be read.
+
+If the data is written to areas of the paint device not previously initialized,
+the paint device will grow." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1222" isRoot="false" isAbstract="false" name="writeBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1223" isRoot="false" value="" type="254" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1224" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1225" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1226" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1227" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the number of contiguous columns starting at x, valid for all values
+of y between minY and maxY." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1228" isRoot="false" isAbstract="false" name="numContiguousColumns" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17105" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1229" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1230" isRoot="false" value="" type="43" isAbstract="false" name="minY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1231" isRoot="false" value="" type="43" isAbstract="false" name="maxY" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the number of contiguous rows starting at y, valid for all values
+of x between minX and maxX." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1232" isRoot="false" isAbstract="false" name="numContiguousRows" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17106" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1233" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1234" isRoot="false" value="" type="43" isAbstract="false" name="minX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1235" isRoot="false" value="" type="43" isAbstract="false" name="maxX" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the row stride at pixel (x, y). This is the number of bytes to add to a
+pointer to pixel (x, y) to access (x, y + 1)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1236" isRoot="false" isAbstract="false" name="rowStride" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17107" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1237" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1238" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get a read-only pointer to pixel (x, y)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1239" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17108" type="254" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1240" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1241" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get a read-write pointer to pixel (x, y)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1242" isRoot="false" isAbstract="false" name="writablePixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17109" type="252" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1243" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1244" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment=" Converts the paint device to a different colorspace" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1245" isRoot="false" isAbstract="false" name="convertTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1246" isRoot="false" value="" type="27" isAbstract="false" name="dstColorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1247" isRoot="false" value="" type="43" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Fill this paint device with the data from img;" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1248" isRoot="false" isAbstract="false" name="convertFromImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1250" isRoot="false" value="" type="1249" isAbstract="false" name="img" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Create an RGBA QImage from a rectangle in the paint device.
+
+@param x Left coordinate of the rectangle
+@param y Top coordinate of the rectangle
+@param w Width of the rectangle in pixels
+@param h Height of the rectangle in pixels
+@param dstProfile RGB profile to use in conversion. May be 0, in which
+case it's up to the colour strategy to choose a profile (most
+like sRGB).
+@param exposure The exposure setting used to render a preview of a high dynamic range image." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1251" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17110" type="925" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1252" isRoot="false" value="" type="915" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1253" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1254" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1255" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1256" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1257" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Create an RGBA QImage from a rectangle in the paint device. The rectangle is defined by the tqparent image's bounds.
+
+@param dstProfile RGB profile to use in conversion. May be 0, in which
+case it's up to the colour strategy to choose a profile (most
+like sRGB).
+@param exposure The exposure setting used to render a preview of a high dynamic range image." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1258" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17111" type="925" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1259" isRoot="false" value="" type="915" isAbstract="false" name="dstProfile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1260" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1261" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17112" type="12" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1262" isRoot="false" isAbstract="false" name="setName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1263" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Fill c and opacity with the values found at x and y.
+
+The color values will be transformed from the profile of
+this paint device to the display profile.
+
+@return true if the operation was succesful." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1264" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17113" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1265" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1266" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1269" isRoot="false" value="" type="1268" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1270" isRoot="false" value="" type="252" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1271" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17114" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1272" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1273" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1275" isRoot="false" value="" type="1274" isAbstract="false" name="kc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the KisColor of the pixel at x,y." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1276" isRoot="false" isAbstract="false" name="colorAt" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17115" type="881" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1277" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1278" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Set the specified pixel to the specified color. Note that this
+bypasses KisPainter. the PaintDevice is here used as an equivalent
+to QImage, not QPixmap. This means that this is not undoable; also,
+there is no compositing with an existing value at this location.
+
+The color values will be transformed from the display profile to
+the paint device profile.
+
+Note that this will use 8-bit values and may cause a significant
+degradation when used on 16-bit or hdr quality images.
+
+@return true if the operation was succesful
+" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1279" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17116" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1280" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1281" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1283" isRoot="false" value="" type="1282" isAbstract="false" name="c" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1284" isRoot="false" value="" type="251" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1285" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17117" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1286" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1287" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1289" isRoot="false" value="" type="1288" isAbstract="false" name="kc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return a KisPixel wrapper around these bytes. If there are not enough
+bytes, bad things will happen. XXX: use vectors?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1290" isRoot="false" isAbstract="false" name="toPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17118" type="326" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1291" isRoot="false" value="" type="252" isAbstract="false" name="bytes" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1292" isRoot="false" isAbstract="false" name="toPixelRO" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17119" type="328" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1293" isRoot="false" value="" type="254" isAbstract="false" name="bytes" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1294" isRoot="false" isAbstract="false" name="hasAlpha" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17120" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1295" isRoot="false" isAbstract="false" name="colorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17121" type="27" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1296" isRoot="false" isAbstract="false" name="dataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17122" type="642" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Replace the pixel data, color strategy, and profile." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1297" isRoot="false" isAbstract="false" name="setData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1298" isRoot="false" value="" type="642" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1299" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1300" isRoot="false" isAbstract="false" name="compositeOp" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17123" type="880" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1301" isRoot="false" isAbstract="false" name="setCompositeOp" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1302" isRoot="false" value="" type="988" isAbstract="false" name="compositeOp" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1303" isRoot="false" isAbstract="false" name="setCompositeOpCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17124" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1304" isRoot="false" value="" type="988" isAbstract="false" name="compositeOp" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The X offset of the paint device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1305" isRoot="false" isAbstract="false" name="getX" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17125" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The Y offset of the paint device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1306" isRoot="false" isAbstract="false" name="getY" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17126" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the X offset of the paint device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1307" isRoot="false" isAbstract="false" name="setX" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1308" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the Y offset of the paint device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1309" isRoot="false" isAbstract="false" name="setY" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1310" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the number of bytes a pixel takes." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1311" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17127" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Return the number of channels a pixel takes" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1312" isRoot="false" isAbstract="false" name="nChannels" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17128" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1313" isRoot="false" isAbstract="false" name="image" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17129" type="1158" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1316" isRoot="false" isAbstract="false" name="setImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1317" isRoot="false" value="" type="1158" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1318" isRoot="false" isAbstract="false" name="undoAdapter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17130" type="1063" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1319" isRoot="false" isAbstract="false" name="scale" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1320" isRoot="false" value="" type="7" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1321" isRoot="false" value="" type="7" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1322" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1323" isRoot="false" value="" type="945" isAbstract="false" name="filterStrategy" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1324" isRoot="false" isAbstract="false" name="rotate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1325" isRoot="false" value="" type="7" isAbstract="false" name="angle" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1326" isRoot="false" value="" type="5" isAbstract="false" name="rotateAboutImageCentre" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1327" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1328" isRoot="false" isAbstract="false" name="shear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1329" isRoot="false" value="" type="7" isAbstract="false" name="angleX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1330" isRoot="false" value="" type="7" isAbstract="false" name="angleY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1331" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Mirror the device along the X axis" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1332" isRoot="false" isAbstract="false" name="mirrorX" />
+ <UML:Operation comment="Mirror the device along the Y axis" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1333" isRoot="false" isAbstract="false" name="mirrorY" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1334" isRoot="false" isAbstract="false" name="getMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17131" type="561" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1335" isRoot="false" isAbstract="false" name="rollback" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1336" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1337" isRoot="false" isAbstract="false" name="rollforward" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1338" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of an rectangle" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1339" isRoot="false" isAbstract="false" name="createRectIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17132" type="11" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1340" isRoot="false" value="" type="43" isAbstract="false" name="left" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1341" isRoot="false" value="" type="43" isAbstract="false" name="top" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1342" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1343" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1344" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of a horizontal line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1345" isRoot="false" isAbstract="false" name="createHLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17133" type="340" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1346" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1347" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1348" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1349" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="This function return an iterator which points to the first pixel of a vertical line" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1350" isRoot="false" isAbstract="false" name="createVLineIterator" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17134" type="370" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1351" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1352" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1353" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1354" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="make owning image emit a selectionChanged" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1355" isRoot="false" isAbstract="false" name="emitSelectionChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1356" isRoot="false" isAbstract="false" name="emitSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1357" isRoot="false" value="" type="814" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get the current selection or create one if this paintdevice hasn't got a selection yet." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1358" isRoot="false" isAbstract="false" name="selection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17135" type="445" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Set the specified selection as the active selection for this paintdevice" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1359" isRoot="false" isAbstract="false" name="addSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1360" isRoot="false" value="" type="445" isAbstract="false" name="selection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Subtracts the specified selection from the currently active selection for this paindevice" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1361" isRoot="false" isAbstract="false" name="subtractSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1362" isRoot="false" value="" type="445" isAbstract="false" name="selection" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Whether there is a valid selection for this paintdevice." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1363" isRoot="false" isAbstract="false" name="hasSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17136" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Deselect the selection for this paintdevice." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1364" isRoot="false" isAbstract="false" name="deselect" />
+ <UML:Operation comment="Clear the selected pixels from the paint device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1365" isRoot="false" isAbstract="false" name="clearSelection" />
+ <UML:Operation comment="Apply a tqmask to the image data, i.e. multiply each pixel's opacity by its
+selectedness in the tqmask." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1366" isRoot="false" isAbstract="false" name="applySelectionMask" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1367" isRoot="false" value="" type="445" isAbstract="false" name="tqmask" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1368" isRoot="false" isAbstract="false" name="visibilityChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1369" isRoot="false" value="" type="430" isAbstract="false" name="device" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1370" isRoot="false" isAbstract="false" name="positionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1371" isRoot="false" value="" type="430" isAbstract="false" name="device" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1372" isRoot="false" isAbstract="false" name="ioProgress" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1374" isRoot="false" value="" type="1373" isAbstract="false" name="percentage" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1375" isRoot="false" isAbstract="false" name="profileChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1376" isRoot="false" value="" type="915" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1377" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17137" type="1379" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1378" isRoot="false" value="" type="1163" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1391" isRoot="false" isAbstract="false" name="accept" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1393" isRoot="false" value="" type="1392" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1394" isRoot="false" isAbstract="false" name="accept" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1396" isRoot="false" value="" type="1395" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="315" isRoot="false" isAbstract="false" name="_iTp" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="326" isRoot="false" isAbstract="false" name="KisPixel" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="328" isRoot="false" isAbstract="false" name="KisPixelRO" />
+ <UML:Class comment="This file is part of the KDE project
+ Copyright (c) 2004 Cyrille Berger &lt;cberger@cberger.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+//**
+The pixel iterators are high level iterarators. The lower level iterators merely return a pointer to some memory
+where a pixel begins; these iterators return KisPixels -- high-level representations of a pixel together with
+color model, profile and selectedness. You can access individual channels using the KisPixel [] operator, and ." isSpecification="false" isLeaf="false" visibility="public" xmi.id="340" isRoot="false" isAbstract="false" name="KisHLineIteratorPixel" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="341" />
+ <UML:Generalization xmi.idref="344" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="368" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsetx" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="369" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsety" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="347" isRoot="false" isAbstract="false" name="KisHLineIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="348" isRoot="false" value="" type="313" isAbstract="false" name="ndevice" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="349" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="350" isRoot="false" value="" type="236" isAbstract="false" name="sel_dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="351" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="352" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="353" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="354" isRoot="false" value="" type="43" isAbstract="false" name="offsetx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="355" isRoot="false" value="" type="43" isAbstract="false" name="offsety" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="356" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="357" isRoot="false" isAbstract="false" name="KisHLineIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="359" isRoot="false" value="" type="358" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="360" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17138" type="362" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="361" isRoot="false" value="" type="358" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="363" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17139" type="362" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="364" isRoot="false" isAbstract="false" name="operator +=" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17140" type="362" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="365" isRoot="false" value="" type="2" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="366" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17141" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="367" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17142" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="370" isRoot="false" isAbstract="false" name="KisVLineIteratorPixel" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="371" />
+ <UML:Generalization xmi.idref="374" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="396" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsetx" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="protected" xmi.id="397" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_offsety" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="377" isRoot="false" isAbstract="false" name="KisVLineIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="378" isRoot="false" value="" type="313" isAbstract="false" name="ndevice" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="379" isRoot="false" value="" type="236" isAbstract="false" name="dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="380" isRoot="false" value="" type="236" isAbstract="false" name="sel_dm" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="381" isRoot="false" value="" type="43" isAbstract="false" name="xpos" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="382" isRoot="false" value="" type="43" isAbstract="false" name="ypos" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="383" isRoot="false" value="" type="43" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="384" isRoot="false" value="" type="43" isAbstract="false" name="offsetx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="385" isRoot="false" value="" type="43" isAbstract="false" name="offsety" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="386" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="387" isRoot="false" isAbstract="false" name="KisVLineIteratorPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="389" isRoot="false" value="" type="388" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="390" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17143" type="392" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="391" isRoot="false" value="" type="388" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="393" isRoot="false" isAbstract="false" name="operator ++" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17144" type="392" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="394" isRoot="false" isAbstract="false" name="x" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17145" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="395" isRoot="false" isAbstract="false" name="y" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17146" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="425" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="887" />
+ <UML:Generalization xmi.idref="890" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1108" isRoot="false" initialValue="" type="894" isAbstract="false" name="m_doc" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1109" isRoot="false" initialValue="" type="962" isAbstract="false" name="m_undoHistory" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1111" isRoot="false" initialValue="" type="1110" isAbstract="false" name="m_uri" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1112" isRoot="false" initialValue="" type="12" isAbstract="false" name="m_name" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1113" isRoot="false" initialValue="" type="12" isAbstract="false" name="m_description" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1114" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_width" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1115" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_height" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1116" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_xres" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1117" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_yres" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1119" isRoot="false" initialValue="" type="1118" isAbstract="false" name="m_unit" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1120" isRoot="false" initialValue="" type="27" isAbstract="false" name="m_colorSpace" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1121" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_dirty" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1122" isRoot="false" initialValue="" type="813" isAbstract="false" name="m_dirtyRect" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1123" isRoot="false" initialValue="" type="450" isAbstract="false" name="m_bkg" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1124" isRoot="false" initialValue="" type="435" isAbstract="false" name="m_projection" />
+ <UML:Attribute comment="// Contains the list of all layers" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1125" isRoot="false" initialValue="" type="436" isAbstract="false" name="m_layers" />
+ <UML:Attribute comment="// Contains a stack of layers in" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1126" isRoot="false" initialValue="" type="436" isAbstract="false" name="m_layerStack" />
+ <UML:Attribute comment="// order of activation, so that when// we remove a layer can activate// the previously activated layer// instead of the bottom or topmost// layer." isSpecification="false" isLeaf="false" visibility="private" xmi.id="1127" isRoot="false" initialValue="" type="435" isAbstract="false" name="m_activeLayer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1129" isRoot="false" initialValue="" type="1128" isAbstract="false" name="m_nserver" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1130" isRoot="false" initialValue="" type="1063" isAbstract="false" name="m_adapter" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1131" isRoot="false" initialValue="" type="1065" isAbstract="false" name="m_guides" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1132" isRoot="false" initialValue="" type="906" isAbstract="false" name="m_dcop" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1134" isRoot="false" initialValue="" type="1133" isAbstract="false" name="m_annotations" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1135" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_renderinit" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1137" isRoot="false" initialValue="" type="1136" isAbstract="false" name="m_mutex" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="893" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="895" isRoot="false" value="" type="894" isAbstract="false" name="doc" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="896" isRoot="false" value="" type="43" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="897" isRoot="false" value="" type="43" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="898" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="900" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="901" isRoot="false" isAbstract="false" name="KisImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="903" isRoot="false" value="" type="902" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="904" isRoot="false" isAbstract="false" name="~ KisImage" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="905" isRoot="false" isAbstract="false" name="dcopObject" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17147" type="906" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Paint the specified rect onto the painter, adjusting the colors using the/// given profile. The exposure setting is used if the image has a high dynamic range." isSpecification="false" isLeaf="false" visibility="public" xmi.id="907" isRoot="false" isAbstract="false" name="renderToPainter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="908" isRoot="false" value="" type="43" isAbstract="false" name="x1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="909" isRoot="false" value="" type="43" isAbstract="false" name="y1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="910" isRoot="false" value="" type="43" isAbstract="false" name="x2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="911" isRoot="false" value="" type="43" isAbstract="false" name="y2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="914" isRoot="false" value="" type="913" isAbstract="false" name="painter" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="916" isRoot="false" value="" type="915" isAbstract="false" name="profile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="917" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Render the projection onto a QImage. In contrast with the above method, the
+selection is not rendered." isSpecification="false" isLeaf="false" visibility="public" xmi.id="918" isRoot="false" isAbstract="false" name="convertToQImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17148" type="925" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="919" isRoot="false" value="" type="43" isAbstract="false" name="x1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="920" isRoot="false" value="" type="43" isAbstract="false" name="y1" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="921" isRoot="false" value="" type="43" isAbstract="false" name="x2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="922" isRoot="false" value="" type="43" isAbstract="false" name="y2" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="923" isRoot="false" value="" type="915" isAbstract="false" name="profile" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="924" isRoot="false" value="" type="6" isAbstract="false" name="exposure" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="926" isRoot="false" isAbstract="false" name="name" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17149" type="12" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="927" isRoot="false" isAbstract="false" name="setName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="928" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="929" isRoot="false" isAbstract="false" name="description" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17150" type="12" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="930" isRoot="false" isAbstract="false" name="setDescription" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="931" isRoot="false" value="" type="899" isAbstract="false" name="description" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="932" isRoot="false" isAbstract="false" name="nextLayerName" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17151" type="12" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="933" isRoot="false" isAbstract="false" name="resize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="934" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="935" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="936" isRoot="false" value="" type="5" isAbstract="false" name="cropLayers" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="937" isRoot="false" isAbstract="false" name="resize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="938" isRoot="false" value="" type="814" isAbstract="false" name="rc" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="939" isRoot="false" value="" type="5" isAbstract="false" name="cropLayers" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="940" isRoot="false" isAbstract="false" name="scale" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="941" isRoot="false" value="" type="7" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="942" isRoot="false" value="" type="7" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="944" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="946" isRoot="false" value="" type="945" isAbstract="false" name="filterStrategy" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="947" isRoot="false" isAbstract="false" name="rotate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="948" isRoot="false" value="" type="7" isAbstract="false" name="angle" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="949" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="950" isRoot="false" isAbstract="false" name="shear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="951" isRoot="false" value="" type="7" isAbstract="false" name="angleX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="952" isRoot="false" value="" type="7" isAbstract="false" name="angleY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="953" isRoot="false" value="" type="943" isAbstract="false" name="m_progress" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="954" isRoot="false" isAbstract="false" name="convertTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="955" isRoot="false" value="" type="27" isAbstract="false" name="dstColorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="956" isRoot="false" value="" type="43" isAbstract="false" name="renderingIntent" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Get the profile associated with this image" isSpecification="false" isLeaf="false" visibility="public" xmi.id="957" isRoot="false" isAbstract="false" name="getProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17152" type="915" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Set the profile associated with this image" isSpecification="false" isLeaf="false" visibility="public" xmi.id="958" isRoot="false" isAbstract="false" name="setProfile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="960" isRoot="false" value="" type="959" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="961" isRoot="false" isAbstract="false" name="enableUndo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="963" isRoot="false" value="" type="962" isAbstract="false" name="history" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="964" isRoot="false" isAbstract="false" name="colorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17153" type="27" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="965" isRoot="false" isAbstract="false" name="setColorSpace" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="966" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Resolution of the image == XXX: per inch?" isSpecification="false" isLeaf="false" visibility="public" xmi.id="967" isRoot="false" isAbstract="false" name="xRes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17154" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="968" isRoot="false" isAbstract="false" name="yRes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17155" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="969" isRoot="false" isAbstract="false" name="setResolution" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="970" isRoot="false" value="" type="7" isAbstract="false" name="xres" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="971" isRoot="false" value="" type="7" isAbstract="false" name="yres" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="972" isRoot="false" isAbstract="false" name="width" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17156" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="973" isRoot="false" isAbstract="false" name="height" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17157" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="974" isRoot="false" isAbstract="false" name="empty" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17158" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="975" isRoot="false" isAbstract="false" name="layers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17159" type="436" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment=" returns a paintdevice that contains the merged layers of this image, within
+the bounds of this image (with the colorspace and profile of this image)" isSpecification="false" isLeaf="false" visibility="public" xmi.id="978" isRoot="false" isAbstract="false" name="mergedImage" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17160" type="430" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Returns the colour of the merged image at pixel (x, y)." isSpecification="false" isLeaf="false" visibility="public" xmi.id="979" isRoot="false" isAbstract="false" name="mergedPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17161" type="881" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="980" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="981" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Get the active painting device" isSpecification="false" isLeaf="false" visibility="public" xmi.id="982" isRoot="false" isAbstract="false" name="activeDevice" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17162" type="430" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Add layers and emit sigLayersUpdated" isSpecification="false" isLeaf="false" visibility="public" xmi.id="983" isRoot="false" isAbstract="false" name="layerAdd" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17163" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="984" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="985" isRoot="false" value="" type="251" isAbstract="false" name="devOpacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="986" isRoot="false" isAbstract="false" name="layerAdd" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17164" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="987" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="989" isRoot="false" value="" type="988" isAbstract="false" name="compositeOp" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="990" isRoot="false" value="" type="251" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="991" isRoot="false" value="" type="27" isAbstract="false" name="colorstrategy" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="992" isRoot="false" isAbstract="false" name="layerAdd" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17165" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="993" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="994" isRoot="false" value="" type="43" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="995" isRoot="false" isAbstract="false" name="layerRemove" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="996" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="997" isRoot="false" isAbstract="false" name="layerNext" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="998" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="999" isRoot="false" isAbstract="false" name="layerPrev" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1000" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1001" isRoot="false" isAbstract="false" name="setLayerProperties" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1002" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1003" isRoot="false" value="" type="251" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1004" isRoot="false" value="" type="988" isAbstract="false" name="compositeOp" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1005" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1006" isRoot="false" isAbstract="false" name="activeLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17166" type="435" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1009" isRoot="false" isAbstract="false" name="activate" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17167" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1010" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1011" isRoot="false" isAbstract="false" name="activateLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17168" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1012" isRoot="false" value="" type="43" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1013" isRoot="false" isAbstract="false" name="layer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17169" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1014" isRoot="false" value="" type="43" isAbstract="false" name="n" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1015" isRoot="false" isAbstract="false" name="findLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17170" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1016" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1017" isRoot="false" isAbstract="false" name="index" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17171" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1019" isRoot="false" value="" type="1018" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1020" isRoot="false" isAbstract="false" name="layer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17172" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1021" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1022" isRoot="false" isAbstract="false" name="layer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17173" type="435" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1023" isRoot="false" value="" type="497" isAbstract="false" name="npos" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// add a layer and don't emit the sigLayersUpdate -- these probably should be private and used by friend kis_view." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1024" isRoot="false" isAbstract="false" name="add" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17174" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1025" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1026" isRoot="false" value="" type="43" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1027" isRoot="false" isAbstract="false" name="rm" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1028" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1029" isRoot="false" isAbstract="false" name="raise" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17175" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1030" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1031" isRoot="false" isAbstract="false" name="lower" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17176" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1032" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1033" isRoot="false" isAbstract="false" name="top" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17177" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1034" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1035" isRoot="false" isAbstract="false" name="bottom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17178" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1036" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1037" isRoot="false" isAbstract="false" name="setLayerPosition" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17179" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1038" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1039" isRoot="false" value="" type="43" isAbstract="false" name="position" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1040" isRoot="false" isAbstract="false" name="nlayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17180" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1041" isRoot="false" isAbstract="false" name="nHiddenLayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17181" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1042" isRoot="false" isAbstract="false" name="nLinkedLayers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17182" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1043" isRoot="false" isAbstract="false" name="raiseLayerCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17183" type="1045" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1044" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1046" isRoot="false" isAbstract="false" name="lowerLayerCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17184" type="1045" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1047" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1048" isRoot="false" isAbstract="false" name="topLayerCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17185" type="1045" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1049" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1050" isRoot="false" isAbstract="false" name="bottomLayerCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17186" type="1045" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1051" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Merge all visible layers and discard hidden ones." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1052" isRoot="false" isAbstract="false" name="flatten" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1053" isRoot="false" isAbstract="false" name="mergeVisibleLayers" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1054" isRoot="false" isAbstract="false" name="mergeLinkedLayers" />
+ <UML:Operation comment="Merge the specified layer with the layer
+below this layer, remove the specified layer." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1055" isRoot="false" isAbstract="false" name="mergeLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1056" isRoot="false" value="" type="435" isAbstract="false" name="l" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1057" isRoot="false" isAbstract="false" name="bounds" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17187" type="813" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1058" isRoot="false" isAbstract="false" name="notify" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1059" isRoot="false" isAbstract="false" name="notify" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1060" isRoot="false" value="" type="814" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1061" isRoot="false" isAbstract="false" name="notifyLayersChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1062" isRoot="false" isAbstract="false" name="undoAdapter" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17188" type="1063" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1064" isRoot="false" isAbstract="false" name="guides" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17189" type="1066" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Add an annotation for this image. This can be anything: Gamma, EXIF, etc.
+Note that the &quot;icc&quot; annotation is reserved for the colour strategies.
+If the annotation already exists, overwrite it with this one." isSpecification="false" isLeaf="false" visibility="public" xmi.id="1067" isRoot="false" isAbstract="false" name="addAnnotation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1069" isRoot="false" value="" type="1068" isAbstract="false" name="annotation" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="get the annotation with the given type, can return 0" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1070" isRoot="false" isAbstract="false" name="annotation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17190" type="1068" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1071" isRoot="false" value="" type="12" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="delete the annotation, if the image contains it" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1072" isRoot="false" isAbstract="false" name="removeAnnotation" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1073" isRoot="false" value="" type="12" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Start of an iteration over the annotations of this image (including the ICC Profile) " isSpecification="false" isLeaf="false" visibility="public" xmi.id="1074" isRoot="false" isAbstract="false" name="beginAnnotations" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17191" type="1075" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="end of an iteration over the annotations of this image" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1076" isRoot="false" isAbstract="false" name="endAnnotations" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17192" type="1075" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1077" isRoot="false" isAbstract="false" name="sigActiveSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1078" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1079" isRoot="false" isAbstract="false" name="sigSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1080" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1081" isRoot="false" isAbstract="false" name="sigLayersChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1082" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1083" isRoot="false" isAbstract="false" name="sigLayersUpdated" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1084" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Emitted whenever an action has caused the image to be recomposited. This happens
+after calls to notify().
+
+@param image this image (useful in case something has more than one image, but that
+ hasn't happened in a year, because we no longer have more than one image
+ in a doc
+@param rc The rect that has been recomposited." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1085" isRoot="false" isAbstract="false" name="sigImageUpdated" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1086" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1087" isRoot="false" value="" type="814" isAbstract="false" name="rc" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1088" isRoot="false" isAbstract="false" name="sigSizeChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1089" isRoot="false" value="" type="426" isAbstract="false" name="image" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1090" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1091" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1092" isRoot="false" isAbstract="false" name="sigProfileChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1093" isRoot="false" value="" type="915" isAbstract="false" name="profile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="1094" isRoot="false" isAbstract="false" name="sigColorSpaceChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1095" isRoot="false" value="" type="27" isAbstract="false" name="cs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1096" isRoot="false" isAbstract="false" name="slotSelectionChanged" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1097" isRoot="false" isAbstract="false" name="slotSelectionChanged" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1098" isRoot="false" value="" type="814" isAbstract="false" name="r" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1099" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17193" type="1101" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1100" isRoot="false" value="" type="902" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="1102" isRoot="false" isAbstract="false" name="init" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1103" isRoot="false" value="" type="894" isAbstract="false" name="doc" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1104" isRoot="false" value="" type="43" isAbstract="false" name="width" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1105" isRoot="false" value="" type="43" isAbstract="false" name="height" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1106" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1107" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="426" isRoot="false" isAbstract="false" name="KisImageSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="427" isRoot="false" isAbstract="false" name="vKisImageSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="428" isRoot="false" isAbstract="false" name="vKisImageSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="429" isRoot="false" isAbstract="false" name="vKisImageSP_cit" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="430" isRoot="false" isAbstract="false" name="KisPaintDeviceImplSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="431" isRoot="false" isAbstract="false" name="vKisPaintDeviceImplSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="432" isRoot="false" isAbstract="false" name="vKisPaintDeviceImplSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="433" isRoot="false" isAbstract="false" name="vKisPaintDeviceImplSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="434" isRoot="false" isAbstract="false" name="KisLayer" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="1400" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1440" isRoot="false" initialValue="" type="251" isAbstract="false" name="m_opacity" />
+ <UML:Attribute comment="//bool m_preserveTransparency;//bool m_initial;" isSpecification="false" isLeaf="false" visibility="private" xmi.id="1441" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_linked" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="1442" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_locked" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1404" isRoot="false" isAbstract="false" name="KisLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1405" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1406" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1407" isRoot="false" isAbstract="false" name="KisLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1408" isRoot="false" value="" type="1158" isAbstract="false" name="img" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1409" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1410" isRoot="false" value="" type="251" isAbstract="false" name="opacity" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1411" isRoot="false" isAbstract="false" name="KisLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1412" isRoot="false" value="" type="1158" isAbstract="false" name="img" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1413" isRoot="false" value="" type="899" isAbstract="false" name="name" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1414" isRoot="false" value="" type="251" isAbstract="false" name="opacity" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1415" isRoot="false" value="" type="27" isAbstract="false" name="colorSpace" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1416" isRoot="false" isAbstract="false" name="KisLayer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1418" isRoot="false" value="" type="1417" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1419" isRoot="false" isAbstract="false" name="~ KisLayer" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1420" isRoot="false" isAbstract="false" name="activate" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1421" isRoot="false" isAbstract="false" name="deactivate" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1422" isRoot="false" isAbstract="false" name="visible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17194" type="1183" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1423" isRoot="false" isAbstract="false" name="setVisible" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1424" isRoot="false" value="" type="5" isAbstract="false" name="v" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1425" isRoot="false" isAbstract="false" name="opacity" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17195" type="251" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1426" isRoot="false" isAbstract="false" name="setOpacity" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1427" isRoot="false" value="" type="251" isAbstract="false" name="val" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1428" isRoot="false" isAbstract="false" name="setOpacityCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17196" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1429" isRoot="false" value="" type="251" isAbstract="false" name="val" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1430" isRoot="false" isAbstract="false" name="linked" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17197" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1431" isRoot="false" isAbstract="false" name="setLinked" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1432" isRoot="false" value="" type="5" isAbstract="false" name="l" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1433" isRoot="false" isAbstract="false" name="setLinkedCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17198" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1434" isRoot="false" value="" type="5" isAbstract="false" name="linked" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1435" isRoot="false" isAbstract="false" name="locked" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17199" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1436" isRoot="false" isAbstract="false" name="setLocked" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1437" isRoot="false" value="" type="5" isAbstract="false" name="l" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="1438" isRoot="false" isAbstract="false" name="setLockedCommand" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17200" type="1181" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="1439" isRoot="false" value="" type="5" isAbstract="false" name="locked" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="1403" isRoot="false" isAbstract="false" name="super" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="435" isRoot="false" isAbstract="false" name="KisLayerSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="436" isRoot="false" isAbstract="false" name="vKisLayerSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="437" isRoot="false" isAbstract="false" name="vKisLayerSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="438" isRoot="false" isAbstract="false" name="vKisLayerSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="439" isRoot="false" isAbstract="false" name="KisPartLayer" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="440" isRoot="false" isAbstract="false" name="KisPartLayerSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="441" isRoot="false" isAbstract="false" name="vKisPartLayerSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="442" isRoot="false" isAbstract="false" name="vKisPartLayerSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="443" isRoot="false" isAbstract="false" name="vKisPartLayerSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="444" isRoot="false" isAbstract="false" name="KisSelection" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="445" isRoot="false" isAbstract="false" name="KisSelectionSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="446" isRoot="false" isAbstract="false" name="vKisSelectionSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="447" isRoot="false" isAbstract="false" name="vKisSelectionSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="448" isRoot="false" isAbstract="false" name="vKisSelectionSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="449" isRoot="false" isAbstract="false" name="KisBackground" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="450" isRoot="false" isAbstract="false" name="KisBackgroundSP" />
+ <UML:Class comment="The histogram class computes the histogram data from the specified layer
+for the specified channel, through the use of a KisHistogramProducer.
+This class is only for layers and paintdevices. KisImages are not supported,
+but you can use the mergedImage function to create a paintdevice and feed that to this class.
+
+A Histogram also can have a selection: this is a specific range in the current histogram
+that will get calculations done on it as well. If the range's begin and end are the same,
+it is supposed to specify a single bin in the histogram.
+
+The calculations are done in the range 0 - 1, instead of the native range that a pixel
+might have, so it's not always as precise as it could be. But you can't have it all..." isSpecification="false" isLeaf="false" visibility="public" xmi.id="451" isRoot="false" isAbstract="false" name="KisHistogram" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="487" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="548" isRoot="false" initialValue="" type="430" isAbstract="false" name="m_device" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="549" isRoot="false" initialValue="" type="59" isAbstract="false" name="m_producer" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="550" isRoot="false" initialValue="" type="483" isAbstract="false" name="m_type" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="551" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_channel" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="552" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_selFrom" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="553" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_selTo" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="554" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_selection" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="555" isRoot="false" initialValue="" type="430" isAbstract="false" name="m_dev" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="556" isRoot="false" initialValue="" type="40" isAbstract="false" name="m_completeCalculations" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="557" isRoot="false" initialValue="" type="40" isAbstract="false" name="m_selectionCalculations" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="508" isRoot="false" isAbstract="false" name="KisHistogram" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="509" isRoot="false" value="" type="435" isAbstract="false" name="layer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="510" isRoot="false" value="" type="59" isAbstract="false" name="producer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="512" isRoot="false" value="" type="511" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="513" isRoot="false" isAbstract="false" name="KisHistogram" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="514" isRoot="false" value="" type="430" isAbstract="false" name="paintdev" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="515" isRoot="false" value="" type="59" isAbstract="false" name="producer" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="516" isRoot="false" value="" type="511" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="517" isRoot="false" isAbstract="false" name="~ KisHistogram" />
+ <UML:Operation comment="Updates the information in the producer" isSpecification="false" isLeaf="false" visibility="public" xmi.id="518" isRoot="false" isAbstract="false" name="updateHistogram" />
+ <UML:Operation comment="(Re)computes the mathematical information from the information currently in the producer.
+Needs to be called when you change the selection and want to get that information" isSpecification="false" isLeaf="false" visibility="public" xmi.id="519" isRoot="false" isAbstract="false" name="computeHistogram" />
+ <UML:Operation comment="The information on the entire view for the current channel" isSpecification="false" isLeaf="false" visibility="public" xmi.id="520" isRoot="false" isAbstract="false" name="calculations" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17201" type="490" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="The information on the current selection for the current channel" isSpecification="false" isLeaf="false" visibility="public" xmi.id="521" isRoot="false" isAbstract="false" name="selectionCalculations" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17202" type="490" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="522" isRoot="false" isAbstract="false" name="getValue" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17203" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="523" isRoot="false" value="" type="251" isAbstract="false" name="i" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="524" isRoot="false" isAbstract="false" name="getHistogramType" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17204" type="483" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="525" isRoot="false" isAbstract="false" name="setHistogramType" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="526" isRoot="false" value="" type="483" isAbstract="false" name="type" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="527" isRoot="false" isAbstract="false" name="setProducer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="528" isRoot="false" value="" type="59" isAbstract="false" name="producer" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="529" isRoot="false" isAbstract="false" name="setChannel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="530" isRoot="false" value="" type="43" isAbstract="false" name="channel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="531" isRoot="false" isAbstract="false" name="producer" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17205" type="59" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="532" isRoot="false" isAbstract="false" name="channel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17206" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="533" isRoot="false" isAbstract="false" name="hasSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17207" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="534" isRoot="false" isAbstract="false" name="selectionFrom" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17208" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="535" isRoot="false" isAbstract="false" name="selectionTo" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17209" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="536" isRoot="false" isAbstract="false" name="setNoSelection" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="537" isRoot="false" isAbstract="false" name="setSelection" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="538" isRoot="false" value="" type="7" isAbstract="false" name="from" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="539" isRoot="false" value="" type="7" isAbstract="false" name="to" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// Dump the histogram to debug." isSpecification="false" isLeaf="false" visibility="private" xmi.id="540" isRoot="false" isAbstract="false" name="dump" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="541" isRoot="false" isAbstract="false" name="calculateForRange" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17210" type="40" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="542" isRoot="false" value="" type="7" isAbstract="false" name="from" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="543" isRoot="false" value="" type="7" isAbstract="false" name="to" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="544" isRoot="false" isAbstract="false" name="calculateSingleRange" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17211" type="490" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="545" isRoot="false" value="" type="2" isAbstract="false" name="channel" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="546" isRoot="false" value="" type="7" isAbstract="false" name="from" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="547" isRoot="false" value="" type="7" isAbstract="false" name="to" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class comment="Class that stores the result of histogram calculations.
+Doubles are in the 0-1 range, use the producer's positionToString function to display it." isSpecification="false" isLeaf="false" visibility="public" xmi.id="490" isRoot="false" isAbstract="false" name="Calculations" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="491" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_max" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="492" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_min" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="493" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_mean" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="494" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_total" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="495" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_median" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="496" isRoot="false" initialValue="" type="7" isAbstract="false" name="m_stddev" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="498" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_high" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="499" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_low" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="500" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_count" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="501" isRoot="false" isAbstract="false" name="getMax" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17212" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="502" isRoot="false" isAbstract="false" name="getMin" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17213" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="503" isRoot="false" isAbstract="false" name="getHighest" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17214" type="497" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="504" isRoot="false" isAbstract="false" name="getLowest" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17215" type="497" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="505" isRoot="false" isAbstract="false" name="getMean" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17216" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="506" isRoot="false" isAbstract="false" name="getCount" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17217" type="497" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="507" isRoot="false" isAbstract="false" name="getTotal" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17218" type="7" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="452" isRoot="false" isAbstract="false" name="KisHistogramSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="453" isRoot="false" isAbstract="false" name="vKisHistogramSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="454" isRoot="false" isAbstract="false" name="vKisHistogramSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="455" isRoot="false" isAbstract="false" name="vKisHistogramSP_cit" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="456" isRoot="false" isAbstract="false" name="KisPaintOp" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="457" isRoot="false" isAbstract="false" name="KisPaintOpSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="458" isRoot="false" isAbstract="false" name="KisPaintOpFactory" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="459" isRoot="false" isAbstract="false" name="KisPaintOpFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="460" isRoot="false" isAbstract="false" name="KisToolFactory" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="461" isRoot="false" isAbstract="false" name="KisToolFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="462" isRoot="false" isAbstract="false" name="KisPluginFactory" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="463" isRoot="false" isAbstract="false" name="KisPluginFactorySP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="464" isRoot="false" isAbstract="false" name="KisTool" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="465" isRoot="false" isAbstract="false" name="KisToolSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="466" isRoot="false" isAbstract="false" name="vKisTool" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="467" isRoot="false" isAbstract="false" name="vKisTool_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="468" isRoot="false" isAbstract="false" name="vKisTool_cit" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="469" isRoot="false" isAbstract="false" name="vKisSegments" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="470" isRoot="false" isAbstract="false" name="KisGuide" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="471" isRoot="false" isAbstract="false" name="KisGuideSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="472" isRoot="false" isAbstract="false" name="KisAlphaMask" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="473" isRoot="false" isAbstract="false" name="KisAlphaMaskSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="474" isRoot="false" isAbstract="false" name="KisAlphaColorSpace" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="475" isRoot="false" isAbstract="false" name="KisAlphaColorSpaceSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="476" isRoot="false" isAbstract="false" name="KisFilter" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="477" isRoot="false" isAbstract="false" name="KisFilterSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="478" isRoot="false" isAbstract="false" name="KisFileFormat" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="479" isRoot="false" isAbstract="false" name="KisFileFormatSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="480" isRoot="false" isAbstract="false" name="vKisFileFormatSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="481" isRoot="false" isAbstract="false" name="vKisFileFormatSP_it" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="482" isRoot="false" isAbstract="false" name="vKisFileFormatSP_cit" />
+ <UML:Enumeration stereotype="484" comment=" Copyright (c) 2004 Boudewijn Rempt
+ (c) 2005 Bart Coppens &lt;kde@bartcoppens.be>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA." isSpecification="false" isLeaf="false" visibility="public" xmi.id="483" isRoot="false" isAbstract="false" name="enumHistogramType" >
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="485" isRoot="false" isAbstract="false" name="LINEAR" />
+ <UML:EnumerationLiteral isSpecification="false" isLeaf="false" visibility="public" xmi.id="486" isRoot="false" isAbstract="false" name="LOGARITHMIC" />
+ </UML:Enumeration>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="497" isRoot="false" isAbstract="false" name="Q_UINT32" />
+ <UML:Class comment="Provides abstraction to a tile. A tile tqcontains
+a part of a PaintDevice, but only the individual pixels
+are accesable and that only via iterators." isSpecification="false" isLeaf="false" visibility="public" xmi.id="558" isRoot="false" isAbstract="false" name="KisTile" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="631" isRoot="false" initialValue="" type="252" isAbstract="false" name="m_data" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="632" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_nReadlock" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="633" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_writeLock" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="634" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_row" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="635" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_col" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="636" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_pixelSize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="637" isRoot="false" initialValue="" type="593" isAbstract="false" name="m_nextTile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="639" isRoot="false" initialValue="" type="638" isAbstract="false" name="WIDTH" ownerScope="classifier" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="640" isRoot="false" initialValue="" type="638" isAbstract="false" name="HEIGHT" ownerScope="classifier" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="597" isRoot="false" isAbstract="false" name="KisTile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="598" isRoot="false" value="" type="43" isAbstract="false" name="pixelSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="599" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="600" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="601" isRoot="false" value="" type="252" isAbstract="false" name="defPixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="602" isRoot="false" isAbstract="false" name="KisTile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="604" isRoot="false" value="" type="603" isAbstract="false" name="rhs" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="605" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="606" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="607" isRoot="false" isAbstract="false" name="KisTile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="608" isRoot="false" value="" type="603" isAbstract="false" name="rhs" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="609" isRoot="false" isAbstract="false" name="~ KisTile" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="610" isRoot="false" isAbstract="false" name="release" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="611" isRoot="false" isAbstract="false" name="allocate" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="612" isRoot="false" isAbstract="false" name="data" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17219" type="252" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="613" isRoot="false" value="" type="43" isAbstract="false" name="xoff" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="614" isRoot="false" value="" type="43" isAbstract="false" name="yoff" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="615" isRoot="false" isAbstract="false" name="refCount" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17220" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="616" isRoot="false" isAbstract="false" name="ref" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="617" isRoot="false" isAbstract="false" name="getRow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17221" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="618" isRoot="false" isAbstract="false" name="getCol" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17222" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="619" isRoot="false" isAbstract="false" name="setNext" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="620" isRoot="false" value="" type="593" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="621" isRoot="false" isAbstract="false" name="getNext" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17223" type="593" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="622" isRoot="false" isAbstract="false" name="setData" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="623" isRoot="false" value="" type="252" isAbstract="false" name="pixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Functions that are needed for locking the tiles into memory for caching" isSpecification="false" isLeaf="false" visibility="public" xmi.id="624" isRoot="false" isAbstract="false" name="addReader" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="625" isRoot="false" isAbstract="false" name="removeReader" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="626" isRoot="false" isAbstract="false" name="readers" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17224" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="628" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17225" type="603" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="630" isRoot="false" value="" type="629" isAbstract="false" name="" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class comment="KisTiledDataManager implements the interface that KisDataManager defines
+
+The interface definition is enforced by KisDataManager calling all the methods
+which must also be defined in KisTiledDataManager. It is not allowed to change the interface
+as other datamangers may also rely on the same interface.
+
+* Storing undo/redo data
+* Offering ordered and unordered iterators over rects of pixels
+* (eventually) efficiently loading and saving data in a format
+that may allow deferred loading.
+
+A datamanager knows nothing about the type of pixel data except
+how many Q_UINT8's a single pixel takes." isSpecification="false" isLeaf="false" visibility="public" xmi.id="559" isRoot="false" isAbstract="false" name="KisTiledDataManager" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="644" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="737" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_pixelSize" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="738" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_numTiles" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="739" isRoot="false" initialValue="" type="593" isAbstract="false" name="m_defaultTile" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="740" isRoot="false" initialValue="" type="578" isAbstract="false" name="m_hashTable" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="741" isRoot="false" initialValue="" type="561" isAbstract="false" name="m_currentMemento" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="742" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_extentMinX" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="743" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_extentMinY" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="744" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_extentMaxX" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="745" isRoot="false" initialValue="" type="43" isAbstract="false" name="m_extentMaxY" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="746" isRoot="false" initialValue="" type="252" isAbstract="false" name="m_defPixel" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="647" isRoot="false" isAbstract="false" name="KisTiledDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="648" isRoot="false" value="" type="497" isAbstract="false" name="pixelSize" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="649" isRoot="false" value="" type="254" isAbstract="false" name="defPixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="650" isRoot="false" isAbstract="false" name="~ KisTiledDataManager" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="651" isRoot="false" isAbstract="false" name="KisTiledDataManager" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="653" isRoot="false" value="" type="652" isAbstract="false" name="dm" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="654" isRoot="false" isAbstract="false" name="operator =" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17226" type="656" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="655" isRoot="false" value="" type="652" isAbstract="false" name="dm" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="657" isRoot="false" isAbstract="false" name="setDefaultPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="658" isRoot="false" value="" type="254" isAbstract="false" name="defPixel" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="659" isRoot="false" isAbstract="false" name="defaultPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17227" type="254" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="660" isRoot="false" isAbstract="false" name="getMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17228" type="561" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="661" isRoot="false" isAbstract="false" name="rollback" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="662" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="663" isRoot="false" isAbstract="false" name="rollforward" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="664" isRoot="false" value="" type="561" isAbstract="false" name="memento" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="665" isRoot="false" isAbstract="false" name="hasCurrentMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17229" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Reads and writes the tiles from/onto a KoStore (which is simply a file within a zip file)
+" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="666" isRoot="false" isAbstract="false" name="write" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17230" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="668" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="669" isRoot="false" isAbstract="false" name="read" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17231" type="5" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="670" isRoot="false" value="" type="667" isAbstract="false" name="store" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="671" isRoot="false" isAbstract="false" name="pixelSize" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17232" type="497" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="672" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="673" isRoot="false" value="" type="569" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="674" isRoot="false" value="" type="569" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="675" isRoot="false" value="" type="569" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="676" isRoot="false" value="" type="569" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="677" isRoot="false" isAbstract="false" name="setExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="678" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="679" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="680" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="681" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="682" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="683" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="684" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="685" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="686" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="687" isRoot="false" value="" type="251" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="688" isRoot="false" isAbstract="false" name="clear" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="689" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="690" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="691" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="692" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="693" isRoot="false" value="" type="252" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="694" isRoot="false" isAbstract="false" name="clear" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="protected" xmi.id="695" isRoot="false" isAbstract="false" name="paste" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="696" isRoot="false" value="" type="642" isAbstract="false" name="data" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="697" isRoot="false" value="" type="43" isAbstract="false" name="sx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="698" isRoot="false" value="" type="43" isAbstract="false" name="sy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="699" isRoot="false" value="" type="43" isAbstract="false" name="dx" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="700" isRoot="false" value="" type="43" isAbstract="false" name="dy" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="701" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="702" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get a read-only pointer to pixel (x, y)." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="703" isRoot="false" isAbstract="false" name="pixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17233" type="254" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="704" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="705" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Get a read-write pointer to pixel (x, y)." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="706" isRoot="false" isAbstract="false" name="writablePixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17234" type="252" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="707" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="708" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="write the specified data to x, y. There is no checking on pixelSize!" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="709" isRoot="false" isAbstract="false" name="setPixel" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="710" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="711" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="712" isRoot="false" value="" type="254" isAbstract="false" name="data" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Copy the bytes in the specified rect to a vector. The caller is responsible
+for managing the vector." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="713" isRoot="false" isAbstract="false" name="readBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="714" isRoot="false" value="" type="252" isAbstract="false" name="bytes" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="715" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="716" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="717" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="718" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="Copy the bytes in the vector to the specified rect. If there are bytes left
+in the vector after filling the rect, they will be ignored. If there are
+not enough bytes, the rest of the rect will be filled with the default value
+given (by default, 0);" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="719" isRoot="false" isAbstract="false" name="writeBytes" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="720" isRoot="false" value="" type="254" isAbstract="false" name="bytes" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="721" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="722" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="723" isRoot="false" value="" type="43" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="724" isRoot="false" value="" type="43" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Get the number of contiguous columns starting at x, valid for all values/// of y between minY and maxY." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="725" isRoot="false" isAbstract="false" name="numContiguousColumns" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17235" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="726" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="727" isRoot="false" value="" type="43" isAbstract="false" name="minY" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="728" isRoot="false" value="" type="43" isAbstract="false" name="maxY" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Get the number of contiguous rows starting at y, valid for all values/// of x between minX and maxX." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="729" isRoot="false" isAbstract="false" name="numContiguousRows" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17236" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="730" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="731" isRoot="false" value="" type="43" isAbstract="false" name="minX" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="732" isRoot="false" value="" type="43" isAbstract="false" name="maxX" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="/// Get the row stride at pixel (x, y). This is the number of bytes to add to a/// pointer to pixel (x, y) to access (x, y + 1)." isSpecification="false" isLeaf="false" visibility="protected" xmi.id="733" isRoot="false" isAbstract="false" name="rowStride" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17237" type="43" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="734" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="735" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation comment="// For debugging use" isSpecification="false" isLeaf="false" visibility="protected" xmi.id="736" isRoot="false" isAbstract="false" name="numTiles" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17238" type="43" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="747" isRoot="false" isAbstract="false" name="ensureTileMementoed" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="748" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="749" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="750" isRoot="false" value="" type="497" isAbstract="false" name="tileHash" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="751" isRoot="false" value="" type="593" isAbstract="false" name="refTile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="752" isRoot="false" isAbstract="false" name="getOldTile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17239" type="593" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="753" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="754" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="755" isRoot="false" value="" type="593" isAbstract="false" name="def" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="756" isRoot="false" isAbstract="false" name="getTile" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17240" type="593" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="757" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="758" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="759" isRoot="false" value="" type="5" isAbstract="false" name="writeAccess" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="760" isRoot="false" isAbstract="false" name="calcTileHash" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17241" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="761" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="762" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="763" isRoot="false" isAbstract="false" name="updateExtent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="764" isRoot="false" value="" type="43" isAbstract="false" name="col" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="765" isRoot="false" value="" type="43" isAbstract="false" name="row" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="766" isRoot="false" isAbstract="false" name="xToCol" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17242" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="767" isRoot="false" value="" type="497" isAbstract="false" name="x" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="768" isRoot="false" isAbstract="false" name="yToRow" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17243" type="497" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="769" isRoot="false" value="" type="497" isAbstract="false" name="y" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="770" isRoot="false" isAbstract="false" name="getContiguousColumnsAndRows" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="771" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="772" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="774" isRoot="false" value="" type="773" isAbstract="false" name="columns" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="775" isRoot="false" value="" type="773" isAbstract="false" name="rows" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="776" isRoot="false" isAbstract="false" name="pixelPtr" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17244" type="252" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="777" isRoot="false" value="" type="43" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="778" isRoot="false" value="" type="43" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="779" isRoot="false" value="" type="5" isAbstract="false" name="writable" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="560" isRoot="false" isAbstract="false" name="KisMemento" >
+ <UML:GeneralizableElement.generalization>
+ <UML:Generalization xmi.idref="562" />
+ </UML:GeneralizableElement.generalization>
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="577" isRoot="false" initialValue="" type="576" isAbstract="false" name="originator" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="579" isRoot="false" initialValue="" type="578" isAbstract="false" name="m_hashTable" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="580" isRoot="false" initialValue="" type="497" isAbstract="false" name="m_numTiles" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="581" isRoot="false" initialValue="" type="578" isAbstract="false" name="m_redoHashTable" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="587" isRoot="false" initialValue="" type="585" isAbstract="false" name="m_delTilesTable" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="588" isRoot="false" initialValue="" type="252" isAbstract="false" name="m_defPixel" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="589" isRoot="false" initialValue="" type="252" isAbstract="false" name="m_redoDefPixel" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="private" xmi.id="595" isRoot="false" initialValue="" type="5" isAbstract="false" name="m_valid" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="565" isRoot="false" isAbstract="false" name="KisMemento" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="566" isRoot="false" value="" type="497" isAbstract="false" name="pixelSize" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="567" isRoot="false" isAbstract="false" name="~ KisMemento" />
+ <UML:Operation comment="// For consolidating transactions
+virtual KisTransaction &amp;operator+=(const KisTransaction &amp;) = 0;
+// For consolidating transactions
+virtual KisTransaction &amp;operator+(const KisTransaction &amp;,
+const KisTransaction &amp;) = 0;" isSpecification="false" isLeaf="false" visibility="public" xmi.id="568" isRoot="false" isAbstract="false" name="extent" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="570" isRoot="false" value="" type="569" isAbstract="false" name="x" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="571" isRoot="false" value="" type="569" isAbstract="false" name="y" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="572" isRoot="false" value="" type="569" isAbstract="false" name="w" />
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="573" isRoot="false" value="" type="569" isAbstract="false" name="h" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="574" isRoot="false" isAbstract="false" name="valid" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter kind="return" xmi.id="17245" type="5" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="public" xmi.id="575" isRoot="false" isAbstract="false" name="setInvalid" />
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="590" isRoot="false" isAbstract="false" name="deleteAll" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="591" isRoot="false" value="" type="585" isAbstract="false" name="deletedtile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ <UML:Operation isSpecification="false" isLeaf="false" visibility="private" xmi.id="592" isRoot="false" isAbstract="false" name="deleteAll" >
+ <UML:BehavioralFeature.parameter>
+ <UML:Parameter isSpecification="false" isLeaf="false" visibility="private" xmi.id="594" isRoot="false" value="" type="593" isAbstract="false" name="tile" />
+ </UML:BehavioralFeature.parameter>
+ </UML:Operation>
+ </UML:Classifier.feature>
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="582" isRoot="false" isAbstract="false" name="DeletedTile" >
+ <UML:Classifier.feature>
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="583" isRoot="false" initialValue="" type="43" isAbstract="false" name="col" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="584" isRoot="false" initialValue="" type="43" isAbstract="false" name="row" />
+ <UML:Attribute isSpecification="false" isLeaf="false" visibility="public" xmi.id="586" isRoot="false" initialValue="" type="585" isAbstract="false" name="next" />
+ </UML:Classifier.feature>
+ </UML:Class>
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="561" isRoot="false" isAbstract="false" name="KisMementoSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="596" isRoot="false" isAbstract="false" name="KisTiledIterator" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="627" isRoot="false" isAbstract="false" name="KisTileManager" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="641" isRoot="false" isAbstract="false" name="KisTiledDataManagerSP" />
+ <UML:Class stereotype="60" isSpecification="false" isLeaf="false" visibility="public" xmi.id="642" isRoot="false" isAbstract="false" name="KisDataManagerSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="643" isRoot="false" isAbstract="false" name="KoStore" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="813" isRoot="false" isAbstract="false" name="QRect" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="870" isRoot="false" isAbstract="false" name="KoXmlWriter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="871" isRoot="false" isAbstract="false" name="QDomElement" />
+ <UML:Class comment="// 1 inch ^= 72 pt// 1 inch ^= 25.399956 mm (-pedantic ;p)// 1 pt = 1/12 pi// 1 pt ^= 0.0077880997 cc// 1 cc = 12 dd// Note: I don't use division but multiplication with the inverse value// because it's faster ;p (Werner)/**
+%KOffice stores everything in pt (using &quot;double&quot;) internally.
+When displaying a value to the user, the value is converted to the user's unit
+of choice, and rounded to a reasonable precision to avoid 0.999999" isSpecification="false" isLeaf="false" visibility="public" xmi.id="872" isRoot="false" isAbstract="false" name="KoUnit" >
+ <UML:Namespace.ownedElement>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1118" isRoot="false" isAbstract="false" name="Unit" />
+ </UML:Namespace.ownedElement>
+ </UML:Class>
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="873" isRoot="false" isAbstract="false" name="KoCommandHistory" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="874" isRoot="false" isAbstract="false" name="KisNameServer" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="875" isRoot="false" isAbstract="false" name="KisUndoAdapter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="876" isRoot="false" isAbstract="false" name="KisPainter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="877" isRoot="false" isAbstract="false" name="DCOPObject" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="878" isRoot="false" isAbstract="false" name="KisDoc" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="879" isRoot="false" isAbstract="false" name="KCommand" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="880" isRoot="false" isAbstract="false" name="KisCompositeOp" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="881" isRoot="false" isAbstract="false" name="KisColor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="882" isRoot="false" isAbstract="false" name="KisFilterStrategy" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="883" isRoot="false" isAbstract="false" name="KisImageIface" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="884" isRoot="false" isAbstract="false" name="KisProfile" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="885" isRoot="false" isAbstract="false" name="KisProgressDisplayInterface" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="886" isRoot="false" isAbstract="false" name=TQOBJECT_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="912" isRoot="false" isAbstract="false" name="QPainter" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="925" isRoot="false" isAbstract="false" name="QImage" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1065" isRoot="false" isAbstract="false" name="KisGuideMgr" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1068" isRoot="false" isAbstract="false" name="KisAnnotationSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1075" isRoot="false" isAbstract="false" name="vKisAnnotationSP_it" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1110" isRoot="false" isAbstract="false" name="KURL" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1133" isRoot="false" isAbstract="false" name="vKisAnnotationSP" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1136" isRoot="false" isAbstract="false" name="QMutex" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1138" isRoot="false" isAbstract="false" name="QSize" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1139" isRoot="false" isAbstract="false" name=TQPOINT_OBJECT_NAME_STRING />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1140" isRoot="false" isAbstract="false" name="QWMatrix" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1141" isRoot="false" isAbstract="false" name="KNamedCommand" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1142" isRoot="false" isAbstract="false" name="KisRotateVisitor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1143" isRoot="false" isAbstract="false" name="KisScaleVisitor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1147" isRoot="false" isAbstract="false" name="KisPaintDevice" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1267" isRoot="false" isAbstract="false" name="QColor" />
+ <UML:Class isSpecification="false" isLeaf="false" visibility="public" xmi.id="1373" isRoot="false" isAbstract="false" name="Q_INT8" />
+ <UML:Generalization isSpecification="false" child="14" visibility="public" xmi.id="16" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="70" visibility="public" xmi.id="73" tqparent="72" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="89" visibility="public" xmi.id="90" tqparent="14" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="131" visibility="public" xmi.id="132" tqparent="89" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="144" visibility="public" xmi.id="145" tqparent="89" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="157" visibility="public" xmi.id="158" tqparent="89" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="170" visibility="public" xmi.id="172" tqparent="61" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="183" visibility="public" xmi.id="184" tqparent="89" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="196" visibility="public" xmi.id="197" tqparent="61" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="205" visibility="public" xmi.id="206" tqparent="89" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="218" visibility="public" xmi.id="219" tqparent="61" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="340" visibility="public" xmi.id="341" tqparent="263" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="340" visibility="public" xmi.id="344" tqparent="309" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="370" visibility="public" xmi.id="371" tqparent="288" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="370" visibility="public" xmi.id="374" tqparent="309" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="11" visibility="public" xmi.id="398" tqparent="234" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="11" visibility="public" xmi.id="401" tqparent="309" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="451" visibility="public" xmi.id="487" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="560" visibility="public" xmi.id="562" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="559" visibility="public" xmi.id="644" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="233" visibility="public" xmi.id="780" tqparent="559" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="425" visibility="public" xmi.id="887" tqparent="886" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="425" visibility="public" xmi.id="890" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="312" visibility="public" xmi.id="1144" tqparent="886" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="312" visibility="public" xmi.id="1148" tqparent="1147" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="312" visibility="public" xmi.id="1151" tqparent="15" discriminator="" name="" />
+ <UML:Generalization isSpecification="false" child="434" visibility="public" xmi.id="1400" tqparent="312" discriminator="" name="" />
+ </UML:Namespace.ownedElement>
+ </UML:Model>
+ </XMI.content>
+ <XMI.extensions xmi.extender="umbrello" >
+ <docsettings viewid="1" documentation="" uniqueid="17245" />
+ <diagrams>
+ <diagram snapgrid="0" showattsig="1" fillcolor="#ffffc0" linewidth="0" zoom="48" showgrid="1" showopsig="1" usefillcolor="1" snapx="10" canvaswidth="2906" snapy="10" showatts="1" xmi.id="1" documentation="" type="402" showops="1" showpackage="0" name="class diagram" localid="900000" showstereotype="0" showscope="1" snapcsgrid="0" font="Bitstream Vera Sans,10,-1,5,50,0,0,0,0,0" linecolor="#ff0000" canvasheight="2145" >
+ <widgets>
+ <classwidget usesdiagramfillcolour="1" width="574" showattsigs="601" usesdiagramusefillcolour="1" x="1230" linecolour="none" y="1075" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="99" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="131" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="583" showattsigs="601" usesdiagramusefillcolour="1" x="1264" linecolour="none" y="1396" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="99" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="157" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="788" showattsigs="601" usesdiagramusefillcolour="1" x="1480" linecolour="none" y="502" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="486" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="89" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="622" showattsigs="601" usesdiagramusefillcolour="1" x="97" linecolour="none" y="95" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="131" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="170" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="584" showattsigs="601" usesdiagramusefillcolour="1" x="1253" linecolour="none" y="1235" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="99" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="144" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="980" showattsigs="601" usesdiagramusefillcolour="1" x="164" linecolour="none" y="783" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="594" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="451" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="604" showattsigs="601" usesdiagramusefillcolour="1" x="1570" linecolour="none" y="55" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="378" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="14" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="454" showattsigs="601" usesdiagramusefillcolour="1" x="169" linecolour="none" y="521" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="126" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="61" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="824" showattsigs="601" usesdiagramusefillcolour="1" x="229" linecolour="none" y="1565" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="144" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="70" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="533" showattsigs="601" usesdiagramusefillcolour="1" x="1851" linecolour="none" y="1235" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="126" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="205" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="433" showattsigs="601" usesdiagramusefillcolour="1" x="503" linecolour="none" y="290" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="99" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="218" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="533" showattsigs="601" usesdiagramusefillcolour="1" x="1837" linecolour="none" y="1068" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="126" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="183" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ <classwidget usesdiagramfillcolour="1" width="389" showattsigs="601" usesdiagramusefillcolour="1" x="678" linecolour="none" y="536" showopsigs="601" linewidth="none" usesdiagramlinewidth="1" usesdiagramlinecolour="1" fillcolour="none" height="99" usefillcolor="1" showpubliconly="0" showattributes="1" isinstance="0" xmi.id="196" showoperations="1" showpackage="0" showscope="1" showstereotype="0" font="Bitstream Vera Sans,10,-1,5,75,0,0,0,0,0" />
+ </widgets>
+ <messages/>
+ <associations>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="1" widgetbid="89" widgetaid="131" xmi.id="132" >
+ <linepath>
+ <startpoint startx="1517" starty="1075" />
+ <endpoint endx="1611" endy="988" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="3" widgetbid="89" widgetaid="157" xmi.id="158" >
+ <linepath>
+ <startpoint startx="1555" starty="1396" />
+ <endpoint endx="1874" endy="988" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="2" widgetbid="89" widgetaid="144" xmi.id="145" >
+ <linepath>
+ <startpoint startx="1545" starty="1235" />
+ <endpoint endx="1742" endy="988" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" widgetbid="14" widgetaid="89" xmi.id="90" >
+ <linepath>
+ <startpoint startx="1874" starty="502" />
+ <endpoint endx="1872" endy="433" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="3" indexb="1" widgetbid="61" widgetaid="170" xmi.id="172" >
+ <linepath>
+ <startpoint startx="408" starty="226" />
+ <endpoint endx="320" endy="521" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" visibilityB="201" totalcountb="2" indexb="1" widgetbid="70" widgetaid="70" xmi.id="88" type="501" changeabilityA="900" changeabilityB="900" visibilityA="200" >
+ <linepath>
+ <startpoint startx="435" starty="1565" />
+ <endpoint endx="847" endy="1565" />
+ <point x="435" y="1515" />
+ <point x="847" y="1515" />
+ </linepath>
+ <floatingtext usesdiagramfillcolour="1" width="34" usesdiagramusefillcolour="1" x="849" linecolour="none" y="1541" linewidth="none" usesdiagramlinewidth="1" posttext="" usesdiagramlinecolour="1" role="702" fillcolour="none" height="22" usefillcolor="1" pretext="" isinstance="0" xmi.id="5093" text="0..1" font="Bitstream Vera Sans,10,-1,5,50,0,0,0,0,0" />
+ <floatingtext usesdiagramfillcolour="1" width="99" usesdiagramusefillcolour="1" x="746" linecolour="none" y="1541" linewidth="none" usesdiagramlinewidth="1" posttext="" usesdiagramlinecolour="1" role="710" fillcolour="none" height="22" usefillcolor="1" pretext="-" isinstance="0" xmi.id="5095" text="m_singleton" font="Bitstream Vera Sans,10,-1,5,50,0,0,0,0,0" />
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="4" widgetbid="89" widgetaid="205" xmi.id="206" >
+ <linepath>
+ <startpoint startx="2117" starty="1235" />
+ <endpoint endx="2005" endy="988" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="3" indexb="2" widgetbid="61" widgetaid="218" xmi.id="219" >
+ <linepath>
+ <startpoint startx="719" starty="389" />
+ <endpoint endx="471" endy="521" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="6" indexb="5" widgetbid="89" widgetaid="183" xmi.id="184" >
+ <linepath>
+ <startpoint startx="2103" starty="1068" />
+ <endpoint endx="2136" endy="988" />
+ </linepath>
+ </assocwidget>
+ <assocwidget totalcounta="2" indexa="1" totalcountb="2" indexb="1" widgetbid="61" widgetaid="196" xmi.id="197" >
+ <linepath>
+ <startpoint startx="678" starty="585" />
+ <endpoint endx="623" endy="584" />
+ </linepath>
+ </assocwidget>
+ </associations>
+ </diagram>
+ </diagrams>
+ <listview>
+ <listitem open="1" type="800" label="Views" >
+ <listitem open="1" type="801" label="Logical View" >
+ <listitem open="0" type="813" id="877" />
+ <listitem open="0" type="813" id="879" />
+ <listitem open="0" type="813" id="1141" />
+ <listitem open="0" type="813" id="15" />
+ <listitem open="0" type="813" id="1110" />
+ <listitem open="0" type="813" id="474" />
+ <listitem open="0" type="813" id="475" />
+ <listitem open="0" type="813" id="472" />
+ <listitem open="0" type="813" id="473" />
+ <listitem open="0" type="813" id="1068" />
+ <listitem open="0" type="813" id="449" />
+ <listitem open="0" type="813" id="450" />
+ <listitem open="0" type="813" id="157" >
+ <listitem open="0" type="815" id="161" />
+ <listitem open="0" type="815" id="164" />
+ <listitem open="0" type="815" id="167" />
+ <listitem open="0" type="815" id="169" />
+ </listitem>
+ <listitem open="0" type="813" id="89" >
+ <listitem open="0" type="813" id="119" />
+ <listitem open="0" type="814" id="120" />
+ <listitem open="0" type="814" id="121" />
+ <listitem open="0" type="814" id="122" />
+ <listitem open="0" type="814" id="123" />
+ <listitem open="0" type="814" id="124" />
+ <listitem open="0" type="814" id="125" />
+ <listitem open="0" type="814" id="126" />
+ <listitem open="0" type="814" id="127" />
+ <listitem open="0" type="814" id="128" />
+ <listitem open="0" type="814" id="129" />
+ <listitem open="0" type="814" id="130" />
+ <listitem open="0" type="815" id="93" />
+ <listitem open="0" type="815" id="98" />
+ <listitem open="0" type="815" id="99" />
+ <listitem open="0" type="815" id="100" />
+ <listitem open="0" type="815" id="103" />
+ <listitem open="0" type="815" id="104" />
+ <listitem open="0" type="815" id="105" />
+ <listitem open="0" type="815" id="106" />
+ <listitem open="0" type="815" id="107" />
+ <listitem open="0" type="815" id="108" />
+ <listitem open="0" type="815" id="109" />
+ <listitem open="0" type="815" id="112" />
+ <listitem open="0" type="815" id="114" />
+ <listitem open="0" type="815" id="116" />
+ <listitem open="0" type="815" id="118" />
+ </listitem>
+ <listitem open="0" type="813" id="170" >
+ <listitem open="0" type="814" id="182" />
+ <listitem open="0" type="815" id="175" />
+ <listitem open="0" type="815" id="178" />
+ <listitem open="0" type="815" id="179" />
+ <listitem open="0" type="815" id="180" />
+ <listitem open="0" type="816" id="171" />
+ </listitem>
+ <listitem open="0" type="813" id="144" >
+ <listitem open="0" type="815" id="148" />
+ <listitem open="0" type="815" id="151" />
+ <listitem open="0" type="815" id="154" />
+ <listitem open="0" type="815" id="156" />
+ </listitem>
+ <listitem open="0" type="813" id="131" >
+ <listitem open="0" type="815" id="135" />
+ <listitem open="0" type="815" id="138" />
+ <listitem open="0" type="815" id="141" />
+ <listitem open="0" type="815" id="143" />
+ </listitem>
+ <listitem open="0" type="813" id="13" />
+ <listitem open="0" type="813" id="881" />
+ <listitem open="0" type="813" id="26" />
+ <listitem open="0" type="813" id="880" />
+ <listitem open="0" type="813" id="233" >
+ <listitem open="0" type="815" id="783" />
+ <listitem open="0" type="815" id="786" />
+ <listitem open="0" type="815" id="789" />
+ <listitem open="0" type="815" id="791" />
+ <listitem open="0" type="815" id="792" />
+ <listitem open="0" type="815" id="793" />
+ <listitem open="0" type="815" id="795" />
+ <listitem open="0" type="815" id="797" />
+ <listitem open="0" type="815" id="799" />
+ <listitem open="0" type="815" id="801" />
+ <listitem open="0" type="815" id="802" />
+ <listitem open="0" type="815" id="807" />
+ <listitem open="0" type="815" id="812" />
+ <listitem open="0" type="815" id="816" />
+ <listitem open="0" type="815" id="822" />
+ <listitem open="0" type="815" id="828" />
+ <listitem open="0" type="815" id="829" />
+ <listitem open="0" type="815" id="837" />
+ <listitem open="0" type="815" id="840" />
+ <listitem open="0" type="815" id="843" />
+ <listitem open="0" type="815" id="847" />
+ <listitem open="0" type="815" id="853" />
+ <listitem open="0" type="815" id="859" />
+ <listitem open="0" type="815" id="863" />
+ <listitem open="0" type="815" id="867" />
+ </listitem>
+ <listitem open="0" type="813" id="642" />
+ <listitem open="0" type="813" id="878" />
+ <listitem open="0" type="813" id="478" />
+ <listitem open="0" type="813" id="479" />
+ <listitem open="0" type="813" id="476" />
+ <listitem open="0" type="813" id="477" />
+ <listitem open="0" type="813" id="882" />
+ <listitem open="0" type="813" id="205" >
+ <listitem open="0" type="814" id="217" />
+ <listitem open="0" type="815" id="209" />
+ <listitem open="0" type="815" id="210" />
+ <listitem open="0" type="815" id="213" />
+ <listitem open="0" type="815" id="215" />
+ <listitem open="0" type="815" id="216" />
+ </listitem>
+ <listitem open="0" type="813" id="218" >
+ <listitem open="0" type="815" id="222" />
+ <listitem open="0" type="815" id="223" />
+ <listitem open="0" type="815" id="224" />
+ <listitem open="0" type="815" id="225" />
+ </listitem>
+ <listitem open="0" type="813" id="183" >
+ <listitem open="0" type="814" id="195" />
+ <listitem open="0" type="815" id="187" />
+ <listitem open="0" type="815" id="188" />
+ <listitem open="0" type="815" id="191" />
+ <listitem open="0" type="815" id="193" />
+ <listitem open="0" type="815" id="194" />
+ </listitem>
+ <listitem open="0" type="813" id="196" >
+ <listitem open="0" type="815" id="200" />
+ <listitem open="0" type="815" id="201" />
+ <listitem open="0" type="815" id="202" />
+ <listitem open="0" type="815" id="203" />
+ </listitem>
+ <listitem open="0" type="813" id="71" />
+ <listitem open="0" type="813" id="470" />
+ <listitem open="0" type="813" id="1065" />
+ <listitem open="0" type="813" id="471" />
+ <listitem open="0" type="813" id="263" >
+ <listitem open="0" type="814" id="287" />
+ <listitem open="0" type="815" id="264" />
+ <listitem open="0" type="815" id="270" />
+ <listitem open="0" type="815" id="271" />
+ <listitem open="0" type="815" id="274" />
+ <listitem open="0" type="815" id="277" />
+ <listitem open="0" type="815" id="278" />
+ <listitem open="0" type="815" id="279" />
+ <listitem open="0" type="815" id="280" />
+ <listitem open="0" type="815" id="281" />
+ <listitem open="0" type="815" id="283" />
+ <listitem open="0" type="815" id="284" />
+ <listitem open="0" type="815" id="285" />
+ <listitem open="0" type="815" id="286" />
+ </listitem>
+ <listitem open="0" type="813" id="340" >
+ <listitem open="0" type="814" id="368" />
+ <listitem open="0" type="814" id="369" />
+ <listitem open="0" type="815" id="347" />
+ <listitem open="0" type="815" id="357" />
+ <listitem open="0" type="815" id="360" />
+ <listitem open="0" type="815" id="363" />
+ <listitem open="0" type="815" id="364" />
+ <listitem open="0" type="815" id="366" />
+ <listitem open="0" type="815" id="367" />
+ </listitem>
+ <listitem open="0" type="813" id="451" >
+ <listitem open="0" type="813" id="490" >
+ <listitem open="0" type="814" id="491" />
+ <listitem open="0" type="814" id="492" />
+ <listitem open="0" type="814" id="493" />
+ <listitem open="0" type="814" id="494" />
+ <listitem open="0" type="814" id="495" />
+ <listitem open="0" type="814" id="496" />
+ <listitem open="0" type="814" id="498" />
+ <listitem open="0" type="814" id="499" />
+ <listitem open="0" type="814" id="500" />
+ <listitem open="0" type="815" id="501" />
+ <listitem open="0" type="815" id="502" />
+ <listitem open="0" type="815" id="503" />
+ <listitem open="0" type="815" id="504" />
+ <listitem open="0" type="815" id="505" />
+ <listitem open="0" type="815" id="506" />
+ <listitem open="0" type="815" id="507" />
+ </listitem>
+ <listitem open="0" type="814" id="548" />
+ <listitem open="0" type="814" id="549" />
+ <listitem open="0" type="814" id="550" />
+ <listitem open="0" type="814" id="551" />
+ <listitem open="0" type="814" id="552" />
+ <listitem open="0" type="814" id="553" />
+ <listitem open="0" type="814" id="554" />
+ <listitem open="0" type="814" id="555" />
+ <listitem open="0" type="814" id="556" />
+ <listitem open="0" type="814" id="557" />
+ <listitem open="0" type="815" id="508" />
+ <listitem open="0" type="815" id="513" />
+ <listitem open="0" type="815" id="517" />
+ <listitem open="0" type="815" id="518" />
+ <listitem open="0" type="815" id="519" />
+ <listitem open="0" type="815" id="520" />
+ <listitem open="0" type="815" id="521" />
+ <listitem open="0" type="815" id="522" />
+ <listitem open="0" type="815" id="524" />
+ <listitem open="0" type="815" id="525" />
+ <listitem open="0" type="815" id="527" />
+ <listitem open="0" type="815" id="529" />
+ <listitem open="0" type="815" id="531" />
+ <listitem open="0" type="815" id="532" />
+ <listitem open="0" type="815" id="533" />
+ <listitem open="0" type="815" id="534" />
+ <listitem open="0" type="815" id="535" />
+ <listitem open="0" type="815" id="536" />
+ <listitem open="0" type="815" id="537" />
+ <listitem open="0" type="815" id="540" />
+ <listitem open="0" type="815" id="541" />
+ <listitem open="0" type="815" id="544" />
+ </listitem>
+ <listitem open="0" type="813" id="14" >
+ <listitem open="0" type="814" id="57" />
+ <listitem open="0" type="814" id="58" />
+ <listitem open="0" type="815" id="19" />
+ <listitem open="0" type="815" id="21" />
+ <listitem open="0" type="815" id="22" />
+ <listitem open="0" type="815" id="23" />
+ <listitem open="0" type="815" id="29" />
+ <listitem open="0" type="815" id="32" />
+ <listitem open="0" type="815" id="34" />
+ <listitem open="0" type="815" id="36" />
+ <listitem open="0" type="815" id="39" />
+ <listitem open="0" type="815" id="42" />
+ <listitem open="0" type="815" id="44" />
+ <listitem open="0" type="815" id="46" />
+ <listitem open="0" type="815" id="47" />
+ <listitem open="0" type="815" id="48" />
+ <listitem open="0" type="815" id="49" />
+ <listitem open="0" type="815" id="50" />
+ <listitem open="0" type="815" id="53" />
+ <listitem open="0" type="815" id="55" />
+ </listitem>
+ <listitem open="0" type="813" id="61" >
+ <listitem open="0" type="814" id="69" />
+ <listitem open="0" type="815" id="62" />
+ <listitem open="0" type="815" id="64" />
+ <listitem open="0" type="815" id="65" />
+ <listitem open="0" type="815" id="66" />
+ <listitem open="0" type="815" id="68" />
+ </listitem>
+ <listitem open="0" type="813" id="70" >
+ <listitem open="0" type="814" id="88" />
+ <listitem open="0" type="815" id="76" />
+ <listitem open="0" type="815" id="77" />
+ <listitem open="0" type="815" id="79" />
+ <listitem open="0" type="815" id="82" />
+ <listitem open="0" type="815" id="83" />
+ <listitem open="0" type="815" id="86" />
+ </listitem>
+ <listitem open="0" type="813" id="59" />
+ <listitem open="0" type="813" id="452" />
+ <listitem open="0" type="813" id="37" />
+ <listitem open="0" type="813" id="81" />
+ <listitem open="0" type="813" id="425" >
+ <listitem open="0" type="814" id="1108" />
+ <listitem open="0" type="814" id="1109" />
+ <listitem open="0" type="814" id="1111" />
+ <listitem open="0" type="814" id="1112" />
+ <listitem open="0" type="814" id="1113" />
+ <listitem open="0" type="814" id="1114" />
+ <listitem open="0" type="814" id="1115" />
+ <listitem open="0" type="814" id="1116" />
+ <listitem open="0" type="814" id="1117" />
+ <listitem open="0" type="814" id="1119" />
+ <listitem open="0" type="814" id="1120" />
+ <listitem open="0" type="814" id="1121" />
+ <listitem open="0" type="814" id="1122" />
+ <listitem open="0" type="814" id="1123" />
+ <listitem open="0" type="814" id="1124" />
+ <listitem open="0" type="814" id="1125" />
+ <listitem open="0" type="814" id="1126" />
+ <listitem open="0" type="814" id="1127" />
+ <listitem open="0" type="814" id="1129" />
+ <listitem open="0" type="814" id="1130" />
+ <listitem open="0" type="814" id="1131" />
+ <listitem open="0" type="814" id="1132" />
+ <listitem open="0" type="814" id="1134" />
+ <listitem open="0" type="814" id="1135" />
+ <listitem open="0" type="814" id="1137" />
+ <listitem open="0" type="815" id="893" />
+ <listitem open="0" type="815" id="901" />
+ <listitem open="0" type="815" id="904" />
+ <listitem open="0" type="815" id="905" />
+ <listitem open="0" type="815" id="907" />
+ <listitem open="0" type="815" id="918" />
+ <listitem open="0" type="815" id="926" />
+ <listitem open="0" type="815" id="927" />
+ <listitem open="0" type="815" id="929" />
+ <listitem open="0" type="815" id="930" />
+ <listitem open="0" type="815" id="932" />
+ <listitem open="0" type="815" id="933" />
+ <listitem open="0" type="815" id="937" />
+ <listitem open="0" type="815" id="940" />
+ <listitem open="0" type="815" id="947" />
+ <listitem open="0" type="815" id="950" />
+ <listitem open="0" type="815" id="954" />
+ <listitem open="0" type="815" id="957" />
+ <listitem open="0" type="815" id="958" />
+ <listitem open="0" type="815" id="961" />
+ <listitem open="0" type="815" id="964" />
+ <listitem open="0" type="815" id="965" />
+ <listitem open="0" type="815" id="967" />
+ <listitem open="0" type="815" id="968" />
+ <listitem open="0" type="815" id="969" />
+ <listitem open="0" type="815" id="972" />
+ <listitem open="0" type="815" id="973" />
+ <listitem open="0" type="815" id="974" />
+ <listitem open="0" type="815" id="975" />
+ <listitem open="0" type="815" id="978" />
+ <listitem open="0" type="815" id="979" />
+ <listitem open="0" type="815" id="982" />
+ <listitem open="0" type="815" id="983" />
+ <listitem open="0" type="815" id="986" />
+ <listitem open="0" type="815" id="992" />
+ <listitem open="0" type="815" id="995" />
+ <listitem open="0" type="815" id="997" />
+ <listitem open="0" type="815" id="999" />
+ <listitem open="0" type="815" id="1001" />
+ <listitem open="0" type="815" id="1006" />
+ <listitem open="0" type="815" id="1009" />
+ <listitem open="0" type="815" id="1011" />
+ <listitem open="0" type="815" id="1013" />
+ <listitem open="0" type="815" id="1015" />
+ <listitem open="0" type="815" id="1017" />
+ <listitem open="0" type="815" id="1020" />
+ <listitem open="0" type="815" id="1022" />
+ <listitem open="0" type="815" id="1024" />
+ <listitem open="0" type="815" id="1027" />
+ <listitem open="0" type="815" id="1029" />
+ <listitem open="0" type="815" id="1031" />
+ <listitem open="0" type="815" id="1033" />
+ <listitem open="0" type="815" id="1035" />
+ <listitem open="0" type="815" id="1037" />
+ <listitem open="0" type="815" id="1040" />
+ <listitem open="0" type="815" id="1041" />
+ <listitem open="0" type="815" id="1042" />
+ <listitem open="0" type="815" id="1043" />
+ <listitem open="0" type="815" id="1046" />
+ <listitem open="0" type="815" id="1048" />
+ <listitem open="0" type="815" id="1050" />
+ <listitem open="0" type="815" id="1052" />
+ <listitem open="0" type="815" id="1053" />
+ <listitem open="0" type="815" id="1054" />
+ <listitem open="0" type="815" id="1055" />
+ <listitem open="0" type="815" id="1057" />
+ <listitem open="0" type="815" id="1058" />
+ <listitem open="0" type="815" id="1059" />
+ <listitem open="0" type="815" id="1061" />
+ <listitem open="0" type="815" id="1062" />
+ <listitem open="0" type="815" id="1064" />
+ <listitem open="0" type="815" id="1067" />
+ <listitem open="0" type="815" id="1070" />
+ <listitem open="0" type="815" id="1072" />
+ <listitem open="0" type="815" id="1074" />
+ <listitem open="0" type="815" id="1076" />
+ <listitem open="0" type="815" id="1077" />
+ <listitem open="0" type="815" id="1079" />
+ <listitem open="0" type="815" id="1081" />
+ <listitem open="0" type="815" id="1083" />
+ <listitem open="0" type="815" id="1085" />
+ <listitem open="0" type="815" id="1088" />
+ <listitem open="0" type="815" id="1092" />
+ <listitem open="0" type="815" id="1094" />
+ <listitem open="0" type="815" id="1096" />
+ <listitem open="0" type="815" id="1097" />
+ <listitem open="0" type="815" id="1099" />
+ <listitem open="0" type="815" id="1102" />
+ </listitem>
+ <listitem open="0" type="813" id="883" />
+ <listitem open="0" type="813" id="426" />
+ <listitem open="0" type="813" id="309" >
+ <listitem open="0" type="814" id="333" />
+ <listitem open="0" type="814" id="338" />
+ <listitem open="0" type="814" id="339" />
+ <listitem open="0" type="815" id="311" />
+ <listitem open="0" type="815" id="318" />
+ <listitem open="0" type="815" id="319" />
+ <listitem open="0" type="815" id="322" />
+ <listitem open="0" type="815" id="325" />
+ <listitem open="0" type="815" id="327" />
+ <listitem open="0" type="815" id="329" />
+ <listitem open="0" type="815" id="331" />
+ <listitem open="0" type="815" id="332" />
+ <listitem open="0" type="815" id="334" />
+ <listitem open="0" type="815" id="336" />
+ <listitem open="0" type="816" id="310" />
+ </listitem>
+ <listitem open="0" type="813" id="434" >
+ <listitem open="0" type="813" id="1403" />
+ <listitem open="0" type="814" id="1440" />
+ <listitem open="0" type="814" id="1441" />
+ <listitem open="0" type="814" id="1442" />
+ <listitem open="0" type="815" id="1404" />
+ <listitem open="0" type="815" id="1407" />
+ <listitem open="0" type="815" id="1411" />
+ <listitem open="0" type="815" id="1416" />
+ <listitem open="0" type="815" id="1419" />
+ <listitem open="0" type="815" id="1420" />
+ <listitem open="0" type="815" id="1421" />
+ <listitem open="0" type="815" id="1422" />
+ <listitem open="0" type="815" id="1423" />
+ <listitem open="0" type="815" id="1425" />
+ <listitem open="0" type="815" id="1426" />
+ <listitem open="0" type="815" id="1428" />
+ <listitem open="0" type="815" id="1430" />
+ <listitem open="0" type="815" id="1431" />
+ <listitem open="0" type="815" id="1433" />
+ <listitem open="0" type="815" id="1435" />
+ <listitem open="0" type="815" id="1436" />
+ <listitem open="0" type="815" id="1438" />
+ </listitem>
+ <listitem open="0" type="813" id="435" />
+ <listitem open="0" type="813" id="560" >
+ <listitem open="0" type="813" id="582" >
+ <listitem open="0" type="814" id="583" />
+ <listitem open="0" type="814" id="584" />
+ <listitem open="0" type="814" id="586" />
+ </listitem>
+ <listitem open="0" type="814" id="577" />
+ <listitem open="0" type="814" id="579" />
+ <listitem open="0" type="814" id="580" />
+ <listitem open="0" type="814" id="581" />
+ <listitem open="0" type="814" id="587" />
+ <listitem open="0" type="814" id="588" />
+ <listitem open="0" type="814" id="589" />
+ <listitem open="0" type="814" id="595" />
+ <listitem open="0" type="815" id="565" />
+ <listitem open="0" type="815" id="567" />
+ <listitem open="0" type="815" id="568" />
+ <listitem open="0" type="815" id="574" />
+ <listitem open="0" type="815" id="575" />
+ <listitem open="0" type="815" id="590" />
+ <listitem open="0" type="815" id="592" />
+ </listitem>
+ <listitem open="0" type="813" id="561" />
+ <listitem open="0" type="813" id="874" />
+ <listitem open="0" type="813" id="1147" />
+ <listitem open="0" type="813" id="312" >
+ <listitem open="0" type="814" id="1380" />
+ <listitem open="0" type="814" id="1381" />
+ <listitem open="0" type="814" id="1382" />
+ <listitem open="0" type="814" id="1383" />
+ <listitem open="0" type="814" id="1384" />
+ <listitem open="0" type="814" id="1385" />
+ <listitem open="0" type="814" id="1386" />
+ <listitem open="0" type="814" id="1387" />
+ <listitem open="0" type="814" id="1388" />
+ <listitem open="0" type="814" id="1389" />
+ <listitem open="0" type="814" id="1390" />
+ <listitem open="0" type="814" id="1397" />
+ <listitem open="0" type="814" id="1398" />
+ <listitem open="0" type="814" id="1399" />
+ <listitem open="0" type="815" id="1154" />
+ <listitem open="0" type="815" id="1157" />
+ <listitem open="0" type="815" id="1162" />
+ <listitem open="0" type="815" id="1165" />
+ <listitem open="0" type="815" id="1166" />
+ <listitem open="0" type="815" id="1168" />
+ <listitem open="0" type="815" id="1170" />
+ <listitem open="0" type="815" id="1172" />
+ <listitem open="0" type="815" id="1175" />
+ <listitem open="0" type="815" id="1178" />
+ <listitem open="0" type="815" id="1182" />
+ <listitem open="0" type="815" id="1184" />
+ <listitem open="0" type="815" id="1186" />
+ <listitem open="0" type="815" id="1188" />
+ <listitem open="0" type="815" id="1191" />
+ <listitem open="0" type="815" id="1193" />
+ <listitem open="0" type="815" id="1198" />
+ <listitem open="0" type="815" id="1199" />
+ <listitem open="0" type="815" id="1200" />
+ <listitem open="0" type="815" id="1202" />
+ <listitem open="0" type="815" id="1207" />
+ <listitem open="0" type="815" id="1208" />
+ <listitem open="0" type="815" id="1213" />
+ <listitem open="0" type="815" id="1215" />
+ <listitem open="0" type="815" id="1216" />
+ <listitem open="0" type="815" id="1222" />
+ <listitem open="0" type="815" id="1228" />
+ <listitem open="0" type="815" id="1232" />
+ <listitem open="0" type="815" id="1236" />
+ <listitem open="0" type="815" id="1239" />
+ <listitem open="0" type="815" id="1242" />
+ <listitem open="0" type="815" id="1245" />
+ <listitem open="0" type="815" id="1248" />
+ <listitem open="0" type="815" id="1251" />
+ <listitem open="0" type="815" id="1258" />
+ <listitem open="0" type="815" id="1261" />
+ <listitem open="0" type="815" id="1262" />
+ <listitem open="0" type="815" id="1264" />
+ <listitem open="0" type="815" id="1271" />
+ <listitem open="0" type="815" id="1276" />
+ <listitem open="0" type="815" id="1279" />
+ <listitem open="0" type="815" id="1285" />
+ <listitem open="0" type="815" id="1290" />
+ <listitem open="0" type="815" id="1292" />
+ <listitem open="0" type="815" id="1294" />
+ <listitem open="0" type="815" id="1295" />
+ <listitem open="0" type="815" id="1296" />
+ <listitem open="0" type="815" id="1297" />
+ <listitem open="0" type="815" id="1300" />
+ <listitem open="0" type="815" id="1301" />
+ <listitem open="0" type="815" id="1303" />
+ <listitem open="0" type="815" id="1305" />
+ <listitem open="0" type="815" id="1306" />
+ <listitem open="0" type="815" id="1307" />
+ <listitem open="0" type="815" id="1309" />
+ <listitem open="0" type="815" id="1311" />
+ <listitem open="0" type="815" id="1312" />
+ <listitem open="0" type="815" id="1313" />
+ <listitem open="0" type="815" id="1316" />
+ <listitem open="0" type="815" id="1318" />
+ <listitem open="0" type="815" id="1319" />
+ <listitem open="0" type="815" id="1324" />
+ <listitem open="0" type="815" id="1328" />
+ <listitem open="0" type="815" id="1332" />
+ <listitem open="0" type="815" id="1333" />
+ <listitem open="0" type="815" id="1334" />
+ <listitem open="0" type="815" id="1335" />
+ <listitem open="0" type="815" id="1337" />
+ <listitem open="0" type="815" id="1339" />
+ <listitem open="0" type="815" id="1345" />
+ <listitem open="0" type="815" id="1350" />
+ <listitem open="0" type="815" id="1355" />
+ <listitem open="0" type="815" id="1356" />
+ <listitem open="0" type="815" id="1358" />
+ <listitem open="0" type="815" id="1359" />
+ <listitem open="0" type="815" id="1361" />
+ <listitem open="0" type="815" id="1363" />
+ <listitem open="0" type="815" id="1364" />
+ <listitem open="0" type="815" id="1365" />
+ <listitem open="0" type="815" id="1366" />
+ <listitem open="0" type="815" id="1368" />
+ <listitem open="0" type="815" id="1370" />
+ <listitem open="0" type="815" id="1372" />
+ <listitem open="0" type="815" id="1375" />
+ <listitem open="0" type="815" id="1377" />
+ <listitem open="0" type="815" id="1391" />
+ <listitem open="0" type="815" id="1394" />
+ </listitem>
+ <listitem open="0" type="813" id="430" />
+ <listitem open="0" type="813" id="456" />
+ <listitem open="0" type="813" id="458" />
+ <listitem open="0" type="813" id="459" />
+ <listitem open="0" type="813" id="457" />
+ <listitem open="0" type="813" id="876" />
+ <listitem open="0" type="813" id="439" />
+ <listitem open="0" type="813" id="440" />
+ <listitem open="0" type="813" id="326" />
+ <listitem open="0" type="813" id="328" />
+ <listitem open="0" type="813" id="462" />
+ <listitem open="0" type="813" id="463" />
+ <listitem open="0" type="813" id="884" />
+ <listitem open="0" type="813" id="885" />
+ <listitem open="0" type="813" id="234" >
+ <listitem open="0" type="814" id="262" />
+ <listitem open="0" type="815" id="235" />
+ <listitem open="0" type="815" id="243" />
+ <listitem open="0" type="815" id="244" />
+ <listitem open="0" type="815" id="247" />
+ <listitem open="0" type="815" id="250" />
+ <listitem open="0" type="815" id="253" />
+ <listitem open="0" type="815" id="255" />
+ <listitem open="0" type="815" id="256" />
+ <listitem open="0" type="815" id="258" />
+ <listitem open="0" type="815" id="259" />
+ <listitem open="0" type="815" id="260" />
+ <listitem open="0" type="815" id="261" />
+ </listitem>
+ <listitem open="0" type="813" id="11" >
+ <listitem open="0" type="814" id="423" />
+ <listitem open="0" type="814" id="424" />
+ <listitem open="0" type="815" id="404" />
+ <listitem open="0" type="815" id="415" />
+ <listitem open="0" type="815" id="418" />
+ <listitem open="0" type="815" id="420" />
+ <listitem open="0" type="815" id="421" />
+ <listitem open="0" type="815" id="422" />
+ </listitem>
+ <listitem open="0" type="813" id="1142" />
+ <listitem open="0" type="813" id="1143" />
+ <listitem open="0" type="813" id="444" />
+ <listitem open="0" type="813" id="445" />
+ <listitem open="0" type="813" id="558" >
+ <listitem open="0" type="814" id="631" />
+ <listitem open="0" type="814" id="632" />
+ <listitem open="0" type="814" id="633" />
+ <listitem open="0" type="814" id="634" />
+ <listitem open="0" type="814" id="635" />
+ <listitem open="0" type="814" id="636" />
+ <listitem open="0" type="814" id="637" />
+ <listitem open="0" type="814" id="639" />
+ <listitem open="0" type="814" id="640" />
+ <listitem open="0" type="815" id="597" />
+ <listitem open="0" type="815" id="602" />
+ <listitem open="0" type="815" id="607" />
+ <listitem open="0" type="815" id="609" />
+ <listitem open="0" type="815" id="610" />
+ <listitem open="0" type="815" id="611" />
+ <listitem open="0" type="815" id="612" />
+ <listitem open="0" type="815" id="615" />
+ <listitem open="0" type="815" id="616" />
+ <listitem open="0" type="815" id="617" />
+ <listitem open="0" type="815" id="618" />
+ <listitem open="0" type="815" id="619" />
+ <listitem open="0" type="815" id="621" />
+ <listitem open="0" type="815" id="622" />
+ <listitem open="0" type="815" id="624" />
+ <listitem open="0" type="815" id="625" />
+ <listitem open="0" type="815" id="626" />
+ <listitem open="0" type="815" id="628" />
+ </listitem>
+ <listitem open="0" type="813" id="627" />
+ <listitem open="0" type="813" id="559" >
+ <listitem open="0" type="814" id="737" />
+ <listitem open="0" type="814" id="738" />
+ <listitem open="0" type="814" id="739" />
+ <listitem open="0" type="814" id="740" />
+ <listitem open="0" type="814" id="741" />
+ <listitem open="0" type="814" id="742" />
+ <listitem open="0" type="814" id="743" />
+ <listitem open="0" type="814" id="744" />
+ <listitem open="0" type="814" id="745" />
+ <listitem open="0" type="814" id="746" />
+ <listitem open="0" type="815" id="647" />
+ <listitem open="0" type="815" id="650" />
+ <listitem open="0" type="815" id="651" />
+ <listitem open="0" type="815" id="654" />
+ <listitem open="0" type="815" id="657" />
+ <listitem open="0" type="815" id="659" />
+ <listitem open="0" type="815" id="660" />
+ <listitem open="0" type="815" id="661" />
+ <listitem open="0" type="815" id="663" />
+ <listitem open="0" type="815" id="665" />
+ <listitem open="0" type="815" id="666" />
+ <listitem open="0" type="815" id="669" />
+ <listitem open="0" type="815" id="671" />
+ <listitem open="0" type="815" id="672" />
+ <listitem open="0" type="815" id="677" />
+ <listitem open="0" type="815" id="682" />
+ <listitem open="0" type="815" id="688" />
+ <listitem open="0" type="815" id="694" />
+ <listitem open="0" type="815" id="695" />
+ <listitem open="0" type="815" id="703" />
+ <listitem open="0" type="815" id="706" />
+ <listitem open="0" type="815" id="709" />
+ <listitem open="0" type="815" id="713" />
+ <listitem open="0" type="815" id="719" />
+ <listitem open="0" type="815" id="725" />
+ <listitem open="0" type="815" id="729" />
+ <listitem open="0" type="815" id="733" />
+ <listitem open="0" type="815" id="736" />
+ <listitem open="0" type="815" id="747" />
+ <listitem open="0" type="815" id="752" />
+ <listitem open="0" type="815" id="756" />
+ <listitem open="0" type="815" id="760" />
+ <listitem open="0" type="815" id="763" />
+ <listitem open="0" type="815" id="766" />
+ <listitem open="0" type="815" id="768" />
+ <listitem open="0" type="815" id="770" />
+ <listitem open="0" type="815" id="776" />
+ </listitem>
+ <listitem open="0" type="813" id="641" />
+ <listitem open="0" type="813" id="231" />
+ <listitem open="0" type="813" id="232" />
+ <listitem open="0" type="813" id="596" />
+ <listitem open="0" type="813" id="227" />
+ <listitem open="0" type="813" id="228" />
+ <listitem open="0" type="813" id="229" />
+ <listitem open="0" type="813" id="230" />
+ <listitem open="0" type="813" id="464" />
+ <listitem open="0" type="813" id="460" />
+ <listitem open="0" type="813" id="461" />
+ <listitem open="0" type="813" id="465" />
+ <listitem open="0" type="813" id="875" />
+ <listitem open="0" type="813" id="288" >
+ <listitem open="0" type="814" id="308" />
+ <listitem open="0" type="815" id="289" />
+ <listitem open="0" type="815" id="295" />
+ <listitem open="0" type="815" id="296" />
+ <listitem open="0" type="815" id="299" />
+ <listitem open="0" type="815" id="302" />
+ <listitem open="0" type="815" id="303" />
+ <listitem open="0" type="815" id="304" />
+ <listitem open="0" type="815" id="305" />
+ <listitem open="0" type="815" id="306" />
+ <listitem open="0" type="815" id="307" />
+ </listitem>
+ <listitem open="0" type="813" id="370" >
+ <listitem open="0" type="814" id="396" />
+ <listitem open="0" type="814" id="397" />
+ <listitem open="0" type="815" id="377" />
+ <listitem open="0" type="815" id="387" />
+ <listitem open="0" type="815" id="390" />
+ <listitem open="0" type="815" id="393" />
+ <listitem open="0" type="815" id="394" />
+ <listitem open="0" type="815" id="395" />
+ </listitem>
+ <listitem open="0" type="813" id="873" />
+ <listitem open="0" type="813" id="643" />
+ <listitem open="0" type="813" id="872" >
+ <listitem open="0" type="813" id="1118" />
+ </listitem>
+ <listitem open="0" type="813" id="870" />
+ <listitem open="0" type="813" id="1267" />
+ <listitem open="0" type="813" id="871" />
+ <listitem open="0" type="813" id="925" />
+ <listitem open="0" type="813" id="1136" />
+ <listitem open="0" type="813" id="886" />
+ <listitem open="0" type="813" id="912" />
+ <listitem open="0" type="813" id="1139" />
+ <listitem open="0" type="813" id="813" />
+ <listitem open="0" type="813" id="1138" />
+ <listitem open="0" type="813" id="12" />
+ <listitem open="0" type="813" id="40" />
+ <listitem open="0" type="813" id="1140" />
+ <listitem open="0" type="813" id="43" />
+ <listitem open="0" type="813" id="1373" />
+ <listitem open="0" type="813" id="497" />
+ <listitem open="0" type="813" id="251" />
+ <listitem open="0" type="813" id="315" />
+ <listitem open="0" type="813" id="1133" />
+ <listitem open="0" type="813" id="1075" />
+ <listitem open="0" type="813" id="480" />
+ <listitem open="0" type="813" id="482" />
+ <listitem open="0" type="813" id="481" />
+ <listitem open="0" type="813" id="453" />
+ <listitem open="0" type="813" id="455" />
+ <listitem open="0" type="813" id="454" />
+ <listitem open="0" type="813" id="427" />
+ <listitem open="0" type="813" id="429" />
+ <listitem open="0" type="813" id="428" />
+ <listitem open="0" type="813" id="436" />
+ <listitem open="0" type="813" id="438" />
+ <listitem open="0" type="813" id="437" />
+ <listitem open="0" type="813" id="431" />
+ <listitem open="0" type="813" id="433" />
+ <listitem open="0" type="813" id="432" />
+ <listitem open="0" type="813" id="441" />
+ <listitem open="0" type="813" id="443" />
+ <listitem open="0" type="813" id="442" />
+ <listitem open="0" type="813" id="469" />
+ <listitem open="0" type="813" id="446" />
+ <listitem open="0" type="813" id="448" />
+ <listitem open="0" type="813" id="447" />
+ <listitem open="0" type="813" id="466" />
+ <listitem open="0" type="813" id="468" />
+ <listitem open="0" type="813" id="467" />
+ <listitem open="0" type="830" label="Datatypes" >
+ <listitem open="0" type="829" id="1167" />
+ <listitem open="0" type="829" id="585" />
+ <listitem open="0" type="829" id="1045" />
+ <listitem open="0" type="829" id="1181" />
+ <listitem open="0" type="829" id="1274" />
+ <listitem open="0" type="829" id="27" />
+ <listitem open="0" type="829" id="236" />
+ <listitem open="0" type="829" id="894" />
+ <listitem open="0" type="829" id="945" />
+ <listitem open="0" type="829" id="72" />
+ <listitem open="0" type="829" id="1066" />
+ <listitem open="0" type="829" id="276" />
+ <listitem open="0" type="829" id="362" />
+ <listitem open="0" type="829" id="78" />
+ <listitem open="0" type="829" id="1101" />
+ <listitem open="0" type="829" id="1158" />
+ <listitem open="0" type="829" id="906" />
+ <listitem open="0" type="829" id="324" />
+ <listitem open="0" type="829" id="1128" />
+ <listitem open="0" type="829" id="1379" />
+ <listitem open="0" type="829" id="313" />
+ <listitem open="0" type="829" id="915" />
+ <listitem open="0" type="829" id="943" />
+ <listitem open="0" type="829" id="249" />
+ <listitem open="0" type="829" id="24" />
+ <listitem open="0" type="829" id="1395" />
+ <listitem open="0" type="829" id="1392" />
+ <listitem open="0" type="829" id="603" />
+ <listitem open="0" type="829" id="593" />
+ <listitem open="0" type="829" id="578" />
+ <listitem open="0" type="829" id="656" />
+ <listitem open="0" type="829" id="576" />
+ <listitem open="0" type="829" id="1063" />
+ <listitem open="0" type="829" id="301" />
+ <listitem open="0" type="829" id="392" />
+ <listitem open="0" type="829" id="962" />
+ <listitem open="0" type="829" id="667" />
+ <listitem open="0" type="829" id="1268" />
+ <listitem open="0" type="829" id="913" />
+ <listitem open="0" type="829" id="41" />
+ <listitem open="0" type="829" id="569" />
+ <listitem open="0" type="829" id="773" />
+ <listitem open="0" type="829" id="252" />
+ <listitem open="0" type="829" id="316" />
+ <listitem open="1" type="829" id="5" />
+ <listitem open="1" type="829" id="4" />
+ <listitem open="0" type="829" id="1288" />
+ <listitem open="0" type="829" id="988" />
+ <listitem open="0" type="829" id="787" />
+ <listitem open="0" type="829" id="272" />
+ <listitem open="0" type="829" id="358" />
+ <listitem open="0" type="829" id="84" />
+ <listitem open="0" type="829" id="38" />
+ <listitem open="0" type="829" id="902" />
+ <listitem open="0" type="829" id="1315" />
+ <listitem open="0" type="829" id="320" />
+ <listitem open="0" type="829" id="1417" />
+ <listitem open="0" type="829" id="1008" />
+ <listitem open="0" type="829" id="1018" />
+ <listitem open="0" type="829" id="1163" />
+ <listitem open="0" type="829" id="959" />
+ <listitem open="0" type="829" id="245" />
+ <listitem open="0" type="829" id="416" />
+ <listitem open="0" type="829" id="629" />
+ <listitem open="0" type="829" id="652" />
+ <listitem open="0" type="829" id="297" />
+ <listitem open="0" type="829" id="388" />
+ <listitem open="0" type="829" id="1282" />
+ <listitem open="0" type="829" id="1249" />
+ <listitem open="0" type="829" id="1176" />
+ <listitem open="0" type="829" id="814" />
+ <listitem open="0" type="829" id="899" />
+ <listitem open="0" type="829" id="638" />
+ <listitem open="0" type="829" id="254" />
+ <listitem open="0" type="829" id="1183" />
+ <listitem open="0" type="829" id="511" />
+ <listitem open="0" type="829" id="977" />
+ <listitem open="1" type="829" id="7" />
+ <listitem open="1" type="829" id="6" />
+ <listitem open="1" type="829" id="2" />
+ <listitem open="1" type="829" id="8" />
+ <listitem open="1" type="829" id="9" />
+ <listitem open="1" type="829" id="10" />
+ <listitem open="0" type="829" id="20" />
+ </listitem>
+ <listitem open="0" type="831" id="483" />
+ </listitem>
+ <listitem open="1" type="802" label="Use Case View" />
+ <listitem open="1" type="821" label="Component View" />
+ <listitem open="1" type="827" label="Deployment View" />
+ <listitem open="1" type="836" label="Entity Relationship Model" />
+ </listitem>
+ </listview>
+ <codegeneration/>
+ </XMI.extensions>
+</XMI>
diff --git a/chalk/doc/hooks b/chalk/doc/hooks
new file mode 100644
index 000000000..83959a962
--- /dev/null
+++ b/chalk/doc/hooks
@@ -0,0 +1,33 @@
+Some color models support more tools, filters and other things like
+colour selectors than other color models. Some support far less of
+those things, in fact.
+
+Among these things are:
+
+* tools
+* palettes
+* filters
+* paint ops
+
+Thus, if a paint device is of a certain color model, certain GUI things
+must be activated and deactived when that paint device becomes active.
+
+A paint op may need to knwo something about the layer it is going to paint
+on: it is not sufficient to generate a tqmask and have that composited by
+the color strategy because the footprint may be determined by the deposit
+and height field that is already present.
+
+For some color models, pixels in a paint device must be
+initialized using more or less complex algorithms. It is not enough to
+initialize a single default pixel (which we cannot do yet), we must
+additionally initialize the whole default tile; and since nothing in
+Chalk outside the tilemanager code should know about the very existence
+of tiles, we must find a generic solution of the canvas initialisation.
+
+Additionally, some color models need permanently running filters to model
+physical pocesses, like drying and flowing of paint or ink, or adsorbtion into
+lower layers.
+
+Finally, some color models (like the selection, or wetdreams) want a way to
+efficiently add some kind of visualisation at the paintView level, instead
+of the rendering level. \ No newline at end of file
diff --git a/chalk/doc/howtofilters.txt b/chalk/doc/howtofilters.txt
new file mode 100644
index 000000000..09deabf66
--- /dev/null
+++ b/chalk/doc/howtofilters.txt
@@ -0,0 +1,30 @@
+The goal of this howto is to explain how to create a filter for chalk
+
+
+2) using Qt/Designer for the ConfigurationWidget
+
+Just copy the following in a file named (for instance) myfiltercw.ui :
+<!DOCTYPE UI><UI version="3.3" stdsetdef="1">
+<class>Form1</class>
+<widget class="KisFilterConfigurationWidget">
+ <property name="name">
+ <cstring>kisFilterConfigurationWidget1</cstring>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>359</width>
+ <height>251</height>
+ </rect>
+ </property>
+ <property name="caption">
+ <string>kisFilterConfigurationWidget1</string>
+ </property>
+</widget>
+<tqlayoutdefaults spacing="6" margin="11"/>
+</UI>
+
+And then open Qt/Designer
+
+NOTE: it would be nicer if I knew how to copy (using autoconf/automake) this file in $(QTDIR)/tools/designer/templates \ No newline at end of file
diff --git a/chalk/doc/impexp.txt b/chalk/doc/impexp.txt
new file mode 100644
index 000000000..123807dc8
--- /dev/null
+++ b/chalk/doc/impexp.txt
@@ -0,0 +1,41 @@
+THIS IS OBSOLETE
+
+Import/Export & ImageMagick
+
+Import/Export is currently hardcoded to use ImageMagick and the RGB colormodel.
+Additionally, export is broken and even when working, only supported exporting
+to images with one layer.
+
+Kimgio is not suitable for Chalk since it only supports importing images as one
+QImage.
+
+The new design should support plugins instead of hardcoded filters, so we can
+add an ImageMagick plugin, an openExr plugin or any other kind of image readers.
+
+Issues:
+
+ * conflicts -- more than one plugin might want to support JPEG, for instance.
+ * configuration -- compression settings, optional flattening, adding
+ profiles, colorspace conversion
+ * identification -- no sane way to distinguish a particular type of tiff from
+ another type, for instance.
+ * colormodel integration -- basically, there are cmyk, rgb and grayscale
+ images in a variety of bit depths (e.g., openexr supports 16 bit and half).
+ Colorspaces must interpret the file data to build Chalk pixels and must
+ unpack chalk pixels to a format a file exporter (e.g, ImageMagick pixel
+ packets) can work with. This means that plugins can depend on the presence
+ of other plugins.
+ * Import/export should be lossless -- i.e., all extra information any file
+ format may attach to the image should be kept around and used on export.
+ Examples are Exif data and profiles, but also Gimp comments.
+
+
+KisAnnotation contains metadata about an image that is grabbed from
+a file, such as exif data or TIFF tags and that we should be able to save.
+
+KisAnnotation
+
+ KisAnnotation(QString type, QString annotation);
+ KisAnnotation(QString type, QByteArray annotation);;
+
+
diff --git a/chalk/doc/large_files b/chalk/doc/large_files
new file mode 100644
index 000000000..9270bca09
--- /dev/null
+++ b/chalk/doc/large_files
@@ -0,0 +1,36 @@
+One think Chalk can not handle are really big files. A 125MB tif file is
+loading into memory in one go, making Chalk take about 289MB of memory
+-- with no image loaded, Chalk takes a more reasonable 41MB. And during
+loading, Chalk needs 800MB, and that's a bit much.
+
+Since my employer has paid to upgrade my laptop to 1GB of memory, that's
+not a problem for me :-). But it's the principle of the thing. Besides,
+loading the file does take a few minutes to convert. And you don't want
+to do a quick sharpen on a file of this size.
+
+Now it has never been a design goal to handle really enormous images, vips
+does that a lot better than any general purpose paint app can ever aspire
+to, but we should give some thought to our way of handling big images.
+
+The problem is layered: it's not enough to have lazy loading of chalk
+files (although we should store, when an image gets above a certain
+size, an .png file of the rendered image that we can quickly load and
+display, and then we should only load the tiles we actually need for
+editing/rerendering from the file), but we should also be able to do the
+same with tiled tiffs and exr images that support random access loading.
+
+This must be done somewhere in the datamanager code. If an image reader
+(whether it's a filter or Chalk's own file format reader) indicates that
+it supports random access, then a file handle and a the reader object
+is passed to the tile manager.
+
+The tile manager either does nothing until it gets a request for a
+certain chunk of data (through one of the read functions or the creation
+of an read/write iterator), and only then it starts reading and decoding
+image data. Or, the tile manager starts a background thread and begins
+converting the alien image data to Chalk tiles, carefully caching them
+in a temp file.
+
+Maybe we could even devise an algorithm to delete unused tiles from
+memory and cache them on disk; same with undo information.
+
diff --git a/chalk/doc/layersupdatesignals.flw b/chalk/doc/layersupdatesignals.flw
new file mode 100644
index 000000000..7f7a66c56
--- /dev/null
+++ b/chalk/doc/layersupdatesignals.flw
Binary files differ
diff --git a/chalk/doc/manual/chalk.kwd b/chalk/doc/manual/chalk.kwd
new file mode 100644
index 000000000..9dd7bdb3d
--- /dev/null
+++ b/chalk/doc/manual/chalk.kwd
Binary files differ
diff --git a/chalk/doc/oasis b/chalk/doc/oasis
new file mode 100644
index 000000000..d533f8bbb
--- /dev/null
+++ b/chalk/doc/oasis
@@ -0,0 +1,5 @@
+Chalk won't do OASIS. There is no suitable file format definition in
+OASIS and it would take too much time from development to define
+one and implement it. Besides, it would be boring work, and I'm
+not paid for that.
+
diff --git a/chalk/doc/paint_device.txt b/chalk/doc/paint_device.txt
new file mode 100644
index 000000000..a3c34a358
--- /dev/null
+++ b/chalk/doc/paint_device.txt
@@ -0,0 +1,98 @@
+THIS DOCUMENT IS OBSOLETED BY THE AUTOLAYERS MERGE
+
+* Paint devices and painters
+
+Chalk's core consists of paint devices and painters:
+
+KisPaintDevice
+KisPainter
+
+These classes are (very) loosely modelled on QPaintDevice and
+QPainter. KisPaintDevice also takes up some of the roles of QImage,
+but isn't all that efficient at it.
+
+This is a write-up of my (Boudewijn's) understanding at this point;
+
+* Getting pixel data in and out of a KisPaintDevice.
+
+Chalk stores all image data in tiles; the tiles are managed by the
+aptly named KisTileMgr. Inside the tiles, we have a KisPixelData
+structure, which is basically a wrapper that packs together a pointer
+to a memory area that contains the pixel data (QUANTUM's) and some
+more information.
+
+Ordinarily, you will change the data inside a KisPaintDevice through
+the KisPainter. Using KisPainter has the advantage that your changes
+will be undoable and that the tile manager is hidden. That's
+especially nice, since you generally don't want to work directly with
+tiles, not before having bought shares in an aspirin producer.
+
+The other way of messing with the pixels inside a KisPaintDevice is
+through the pixel() and and setPixel() methods in KisPaintDevice.
+These methods retrieve and set the specified pixel data using the
+tiles, but are not undoable. They are also rather ineffcient and slow.
+
+KisPainter and KisPaintDevice do the job of hiding the actual image
+data from the chalk hacker, but sometimes it's not enough, sometimes
+you need to loop over all the pixels in an image, do
+something, and write the pixels back to this or another image (or
+sections of images).
+
+In the near future, we will offer an iterator over the pixels, for now
+you will have to ask the tile manager to copy all the bytes of the
+image data in a buffer for you to read. Likewise, in the future we
+will hopefully have something clever to feed pixel data to the tile
+manager. For now, you will have to fill a memory buffer with the
+desired data and feed that to the tile manager.
+
+** Getting pixel data into your buffer
+
+Define a pointer to a memory buffer with QUANTUMS
+
+ QUANTUM *buf;
+
+Create the buffer. Note that you cannot assume that there is one byte
+per channel; QUANTUM can be bigger.
+
+ buf = new QUANTUM[width * heigth * depth * sizeof(QUANTUM)];
+
+Fill the buf with the data. x1, y1, x2, y2 are the top left and bottom
+right corner of the section you want. stride is the width of the
+section in bytes, i.e. (x2 - x1 + 1) * depth. Note that stride does
+not need to be pre-multiplied with sizeof(QUANTUM), aptqparently.
+
+ tilemgr -> readPixelData(x1, y1, x2, y2, buf, stride);
+
+Now all the pixels in the tile manager are copied into 'buf' -- the
+operative word is 'copy', which means slow, and takes a lot of memory
+is the section is big.
+
+If you can stand computing with tiles, you can copy each tile into the
+buffer, which takes a lot less memory, but you have to take care when
+the image isn't exactly a multiple of the tilesize. See
+kis_image_magick_converter.cpp for an example.
+
+** Getting your data into a KisPaintDevice without using KisPainter
+
+Although in the future we might offer a bitBlt that takes a simple
+memory buffer and blits that onto the paint device, for now, you will
+have to access the tile manager directly, using writePixelData.
+
+
+First create a buffer, just as above:
+
+ QUANTUM * newData = new QUANTUM[width * height * depth * sizeof(QUANTUM)];
+
+But unless you are sure you are going to fill absolutely every pixel,
+you might want to initialize the buffer with memset. Chalk, in
+contrast with ImageMagick, uses 0 as the value for transparent
+opacity, so that's nice:
+
+ memset(newData, width * height * depth * sizeof(QUANTUM), 0);
+
+Then create a new tilemanager, or reuse the old one if the size is
+still correct. Stride is again width * depth, not width * depth *
+sizeof(QUANTUM)
+
+ KisTileMgrSP tm = new KisTileMgr(depth, width, height);
+ tm -> writePixelData(x1, y1, x2, y2, newData, stride);
diff --git a/chalk/doc/palettedesign.txt b/chalk/doc/palettedesign.txt
new file mode 100644
index 000000000..9dc2cfab7
--- /dev/null
+++ b/chalk/doc/palettedesign.txt
@@ -0,0 +1,34 @@
+Requirements
+
+* Flexible: plugins should be able to add palettes or palette tabs
+* Connected: palette tabs should be able to connect to the main application
+ using Q_SIGNALS and Q_SLOTS
+* Configurable: palette widgets should be drag & droppable from palette
+ to palette, and from palette to void to create a new palette.
+* Persistent: the palette configuration of a view should be persisted
+ on application end and reconfigured on application start.
+* Pretty: the palettes should be small, but perfectly formed. There
+ should be the possibility to use either tabbars or toolboxes for
+ a palette.
+* introspective: the application and plugins should be able to
+ query for existing palettes and tabs and retrieve a list and
+ pertinent data on existing palettes and tabs (so a plugin can
+ decide to place itself initially in a palette with other color
+ tabs, for instance.
+
+Classes:
+
+PaletteManager, Palette, PaletteContainer PaletteWidget
+
+The palettemanager keeps track of palettes and saves & restores sessions.
+
+Palettes can shade and unshade themselves with a double-click on the
+titlebar or using the shade button
+
+Palettes contain a container, either tab-type or toolbox type.
+The containers accept drops, in which case a widget is plugged into
+the container. The tabs or separators accept drag events, in which
+case a widget is unplugged and a drag operation is started.
+
+The drag operation can end in the void, or above another palette.
+If above a palette, see above. Into the void: create a new palette
diff --git a/chalk/doc/plugins.txt b/chalk/doc/plugins.txt
new file mode 100644
index 000000000..2902adb8e
--- /dev/null
+++ b/chalk/doc/plugins.txt
@@ -0,0 +1,32 @@
+There are several kinds of plugins in Chalk: CoreModules and Plugins. Core modules
+add functionality to Chalk but do not directly add to the user interface (menus and
+toolbars). Plugins create actions.
+
+All plugins register themselves with the appropriate registry:
+
+KisToolRegistry -- tools like brush, crop etc. Tools are added to the menu and the tools
+ box, but are special in that every view has a different instantiation of a tool for every
+ pointer X11 presents to Chalk (mouse, stylus, eraser, other styluses for fancy wacom
+ tablets).
+
+KisColorSpaceRegistry -- color models like cmyk or rgb are core modules. These add the capability
+ to load and save and edit images in a particular color model and bit depth.
+
+KisFilterRegistry -- Filters are a little mode complicated in that these are operations that
+ should be available from many places in the application -- i.e, some tools build on
+ the availablity of filters, and filters can be building blocks in scripts -- but are
+ also directly available from the filter menu.
+
+KisPaintOpRegistry -- Paintops are plugins that define the way tools actually make
+ marks on the canvas. Paintops have no independent life in the gui but can be shown
+ in the toolbox.
+
+KisPluginRegistry -- Plugins that do not fall into any of the previous categories. Examples
+ are the GUI for scaling/resizing an image, select-by-colour etc.
+
+
+Chalk automatically adds filters to the items menu and tools to the tools menu; paintops
+are managed in the paintop toolbox and the tool plugins add themselves to the tools toolbar.
+This is done without referring to the XML gui buider. General plugins, like select-by-colour,
+that are often gui wrappers around core functionality, are loaded using the ordinary
+KDE plugin framework.
diff --git a/chalk/doc/profiles.txt b/chalk/doc/profiles.txt
new file mode 100644
index 000000000..c1841d527
--- /dev/null
+++ b/chalk/doc/profiles.txt
@@ -0,0 +1,125 @@
+* Using littlecms for professional colourmanagement.
+
+
+Profiles are applied to image data on import, paste, copy, display and
+printing to calibrate for particular ways in which image data can
+be presented or created. Profiles are associated with a certain
+color space and with a device class.
+
+* The following profiles are available in Chalk:
+
+Image profile The image profile is the default profile
+ for the default color space for the layers
+ in Chalk
+
+Layer profile Chalk images can have layers of different
+ color spaces, so each layer can have a
+ different profile, too.
+
+Display profile When converting the visible part of
+ an image for displaying on the users monitor,
+ a monitor calibration profile can be applied
+ to adjust for display idiosyncrasies.
+
+Import profile On importing an image from disk that does
+ not have a profile embedded (XXX: embedded
+ profiles aren't recoginized yet), a screenshot
+ or a scan, the import profile is attached
+ to the image.
+
+Output profile On printing, a profile can be applied to the
+ image to compensate for the printer
+ idiosyncrasies. XXX: Printing doesn't work
+ yet at all, and printing is big task that
+ should be part of KDE. We should simply
+ convert an image to a tiff file with embedded
+ profile, and send that to a system printer.
+
+
+* At the following points we need to handle profiles:
+
+
+File import Chalk uses ImageMagick to import files.
+ ImageMagick knows about embedded profiles and
+ makes them available in memory. We need to
+ hack our IM builder to convert the in-memory
+ profile blob to a profile handle.
+
+
+File export Chalk uses ImageMagick to export files.
+ Here we need to do the reverse trick; take
+ a profile handle and get IM to save it with
+ the file.
+
+Paste from clipboard Two cases: Chalk has placed a clip on the
+ clipboard, or another application has placed
+ a clip on the clipboard. Clips are wrapped
+ in the KisClip class that can be created with
+ a profile. That can be the profile of the
+ image Chalk copied the clip from, or the
+ copy profile set in the Settings, or none.
+
+ An external clip is always RGB8 (for now, no
+ doubt Qt will extend its clipboard once RGB16
+ images or RGB half images become widespread),
+ so in those cases we always need an RGB
+ profile.
+
+ Paste from external applications is handled by
+ the constructor from KisPaintDevice,
+ internally it might entail a mode conversion.
+
+Copy to clipboard If another application consumes a clip Chalk
+ has put on the clipboard it can receive the
+ data as-is, or with a profile applied.
+
+ Paste is handled by KisPaintDevice::convertToQImage.
+
+Display on monitor For calibrated displays. This is handled
+ by KisPaintDevice::convertToQImage()
+
+Image mode conversion A user can either choose to convert an
+ existing layer or image to another color
+ model/profile/bit depth or the conversion can
+ happen automatically, for instance when
+ painting when the color of a pixel is
+ converted from KoColor to the color in the
+ color model.
+
+ This is handled by
+ KisStrategyColorSpace:convertTo().
+
+File loading Chalk's own file format now has a field for
+ the product name of a profile. We need also to
+ be able to embed the entire profile into a
+ Chalk file. That should be easy, since a Chalk
+ file is just a zipfile.
+
+File saving When loading a Chalk file format image we
+ should also be able to load embedded profiles.
+
+
+* Chalk should have a few extra features that are easy to implement
+ once I a) know what they mean, technically and b) the foregoing is
+ completed. These are:
+
+Softproofing Showing the image on the monitor with profiles
+ for printing applied, too.
+
+Out-of-gamut warnign Colours that cannot be printed are shown in
+ some hideous colour.
+
+Blackpoint compenstion No idea about this...
+
+8-bit image dither No idea.
+
+... lcms offers more stuff that I don't know
+ anything about but which might be interesting.
+
+
+* External factors play a role. We need a free display calibration
+ tool for X11, a printing system that takes this stuff into account
+ and all the rest. That's not part of Chalk, but it needs to be done
+ some time. XXX: Ask the KGamma developers about this?
+
+
diff --git a/chalk/doc/resolution.txt b/chalk/doc/resolution.txt
new file mode 100644
index 000000000..ac4ced7f5
--- /dev/null
+++ b/chalk/doc/resolution.txt
@@ -0,0 +1,40 @@
+Ranjan Ghosh on resolution:
+
+The resolution dialog needs a bit of fine-tuning IMO.
+
+1) It's not only the print size that changes but the size on any media.
+Therefore I propose adding a single option"physical size" to
+the zoom menu (like 100%,200%, Fit in Window, Physical Size) and
+changing the text a bit:
+
+<snip>
+
+Physical Size
+----------------
+Width: [---------] (cm, mm,...)
+Height: [---------] (cm, mm,...)
+
+The physical size of an image is determined by the
+size in pixels, the image resolution shown above
+and the physical resolution of the target media
+(screen, printer, etc). Most images do not...
+
+<snip>
+
+Now you can enter some value here and when you later select
+"Zoom to physical size" you will size the image on your screen
+just like it is on your printer. Requirements for this to work:
+A proper screen resolution setting in Properties (I would not
+repeat it here though as it is confusing) and proper printer
+resolution setting. Can this determined automatically? Otherwise
+there is a need to enter a printer resolution to (perhaps
+in the print dialogue itself or under properties)
+
+The metric system is not needed IMO. The resolution is never
+given in dots per centimeter but always in dots per inch. Nobody
+- even in Europe - will need that. It's just not used. Even more:
+Most people certainly will want to enter some values in centimeter
+but read the resolution in dpi. So I propose setting all resolution
+values to dpi.
+
+
diff --git a/chalk/doc/scripts/dcop.py b/chalk/doc/scripts/dcop.py
new file mode 100644
index 000000000..cc703930f
--- /dev/null
+++ b/chalk/doc/scripts/dcop.py
@@ -0,0 +1,14 @@
+from pydcop import *
+
+app = ""
+for a in apps():
+ if (a.startswith("chalk")):
+ app = anyAppCalled(a)
+
+doc = app.KoApplicationIface.getDocuments()[0]
+img=doc.currentImage()
+dev=img.activeDevice()
+dev.setName("A new name")
+print dev.pixelSize()
+print dev.nChannels()
+print dev.readBytes(10, 10, 1, 1)
diff --git a/chalk/doc/sdk b/chalk/doc/sdk
new file mode 100644
index 000000000..b811d80a6
--- /dev/null
+++ b/chalk/doc/sdk
@@ -0,0 +1,10 @@
+Chalk SDK
+
+The Chalk SDK is in development. Basically, plugins and extensions should
+not include anything from chalk/core, but only the headers from chalk/sdk.
+
+Problem: creating new paint devices, layers and images. You cannot, obviously,
+instantiate an interface, and we should not, equally obvious, code against
+implementations. The solution is a factory class that is made available to
+the plugin when it is created -- i.e, the tqparent class of a plugin should
+implement the various factory interfaces for paint devices, images and layers.
diff --git a/chalk/doc/selections b/chalk/doc/selections
new file mode 100644
index 000000000..bdcdaa034
--- /dev/null
+++ b/chalk/doc/selections
@@ -0,0 +1,127 @@
+Selections in Chalk
+
+Please disregard any lingering presence of the KisFloatingSelection
+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 Chalk 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
+
+TODO: * implement heterogenous compositing. (Needs knowledge by the
+ target layer of the color strategy of the source layer).
+
+Selections can be changed using tools that are clones of the usual
+painting tools: brush, eraser, polygon, etc.
+
+TODO: * implement most of these, the polygon, circle, rectangle tools
+ should fill by default. XXX: make it easier to leverage the
+ code for the standard tools: after all, the only difference
+ is which layer they should paint on.
+
+XXX: Fill-by-default should be an option for the polygon, circle,
+ rectangle painting tools, too.
+
+Selections can also changed by procedures like select-by-color etc.
+
+TODO: * finish dialog for select by color
+ * implement select-by-color (depends on usable iterators)
+
+Selections are represented as 0== unselected and 255 == fully
+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 tqmask type rendering, but
+someone else might want to provide an optional marque-rendering.
+
+TODO: * enable kconfig option to select between renderings.
+
+Selected pixels can be mangled -- for instance, filled with a
+gradient, moved, made brighter, lighter or sprightlier, cut and
+pasted. These manglings fall into two groups: the kind that demands
+that the selected pixels are removed from their native layer, and the
+kind that merely changes their value.
+
+
+A) Moving, cutting, copying, pasting.
+
+Each of these operations moves pixels to a new KisLayer that is not
+part of the regular stack of layers. The operations are defined as
+follows:
+
+Moving: create new layer, copy selected pixels to this layer, set
+pixels in old layer to transparent background colour, set new layer
+visible.
+
+Cutting: create new layer, copy selected pixels to this layer, set
+pixels in old layer to transparent background colour, add new layer to
+the cut scrapbook (if we're going to have such a thing).
+
+XXX: Discuss desirability of cut scrapbook.
+
+Copying: create new layer, copy selected pixels to this layer, add new
+layer to the cut scrapbook (if we're going to have such a thing).
+
+Pasting: check if cut or copy layer exists in scrapbook, copy pixels
+from this layer to the target layer.
+
+B) Changing the value of selected pixels
+
+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 tqmask to the compositing loop, and skip
+un-selected pixels.
+
+XXX: Discuss whether this is true
+
+Filtering needs looping over all pixels of a layer, and, if selection
+is present, only apply filter to the selected pixel.
+
+XXX: What about convolving, which takes a matrix of pixels. If only
+the middle pixel of a matrix is selected, should we take the input of
+the surrounding unselected pixels, or should the operation then assume
+edge conditions? Or should this be an option?
+
+TODO: infrastructure for all these operations, actual implementation.
+
+Actions to a selection need to be undoable.
+
+TODO: Make it so.
+
+I am not sure whether selections need to be saved and loaded:
+Photoshop offers this, but our selection mechanism works differently.
+The Gimp offers selection adding/subtracting, but that's also not
+really necessary. A good idea is perhaps to add a combobox to the
+selection tool properties widget to choose between 'select' and
+'deselect', where the brush is initially set to 'select' and the
+eraser to 'deselect'.
+
+From a thread in the mailing list Boudewijn wrote:
+-----------------------------------------------------------------------
+This is the behaviour I expect from a paint app:
+
+If there's a selection on the current layer, only the selected pixels in the
+current layer should be transformed, rotated, scaled or sheared. This happens
+within the layer. If the new pixels overlap untransformed pixels, they are
+composed with the giving composite op and opacity.
+
+If there's no selection, a transform on a layer should transform all pixels in
+a layer, i.e., act as if the layer was completely selected. No new layer is
+created. There is no composition, because the old layer data is completely
+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 tqshape of the selection is
+transformed.
+
+If a layer is moved, the selection moves with the layer (this is not
+implemented yet).
+
+A transform never creates a new layer (expect perhaps temporarily and it
+wouldn't be visible to the user).
diff --git a/chalk/doc/the preview widget b/chalk/doc/the preview widget
new file mode 100644
index 000000000..cc06b9de3
--- /dev/null
+++ b/chalk/doc/the preview widget
@@ -0,0 +1,81 @@
+
+On Tuesday 21 June 2005 14:16, Casper Boemann wrote:
+> Hi
+>
+> As you might have noticed I have changed the tqlayout of the preview, to lo=
+ok
+> more like digikam.
+>
+> Now the preview widget itself also needs some updating:
+> - zoom doesn't exist in the digikam preview - the image is zoomed all out
+> - that doesn't mean we shouldn't keep the abillity to zoom, but I think
+> default should be zoomed out as in digikam.
+
+Agreed. We should show all of the image in our preview.
+
+> - the update of the preview seems slow. Is the algorithm as effective as
+> it can be?
+
+No, definitely not. In fact, if I remember correctly, preview copies & rend=
+ers=20
+the complete image. Options are:
+
+* Just preview the active layer, out of context
+* Copy the image, scale it down, and then render it. Cache the scaled-down=
+=20
+thumbnail.
+* Work on the QImage of the rendered image, and apply all filters on that -=
+=2D=20
+for preview, that may be accurate enough.
+
+Note that we want a fast thumbnail preview for in the bird's eye box, too, =
+and=20
+in the variations dialog we need a whole bunch of previews. So I guess the=
+=20
+requirements are:
+
+* Frugal with memory
+* Fast
+* Filters should work on the preview image
+* Zoomable, but initially the complete image/layer is shown
+* Selectable: preview layer/preview image
+
+I have a feeling that this may be hard to achieve...
+
+> This is not something I'm going to do, but I think we should discuss it a=
+nd
+> put it in the TODO.
+
+Definitely.=20
+
+=2D-=20
+Boudewijn Rempt=20
+http://www.valdyas.org/fading/index.cgi
+
+--nextPart43061363.Bp4Ilo6nOP
+Content-Type: application/pgp-signature
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.5 (GNU/Linux)
+
+iD8DBQBCuAdpdaCcgCmN5d8RAp2hAKDfwdjOxB6EoYaJUuYYJlrculR3yACfcYMJ
+KjDOPxiFJdTsLAU00lJNOGE=
+=1wDD
+-----END PGP SIGNATURE-----
+
+--nextPart43061363.Bp4Ilo6nOP--
+
+--===============1891010795==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: inline
+
+_______________________________________________
+kimageshop mailing list
+kimageshop@kde.org
+https://mail.kde.org/mailman/listinfo/kimageshop
+
+--===============1891010795==--
+
+
diff --git a/chalk/doc/transform_undo.txt b/chalk/doc/transform_undo.txt
new file mode 100644
index 000000000..fa9606550
--- /dev/null
+++ b/chalk/doc/transform_undo.txt
@@ -0,0 +1,38 @@
+Problem:
+
+When working with the transform tool, the user performs many adjustments.
+These adjustments should be aggregated into one transform, and always
+performed from the original state of the image, as it was before the
+first transformation adjustment was applied -- because otherwise
+the quality degradation becomes too bad.
+
+That means that all work with the transform tool should eventually
+result in one transform command. However, when working with the transform
+tool, the user expects to be able to undo various stages of his transform
+actions. And undo should not undo to the original state, but to the previous
+state.
+
+When the user selects another tool, the definitive transform is applied.
+This happens because selecting another tool calls the clear function of
+the transform tool. One transform command should end up on the undo
+stack.
+
+When the user selects an action from the menu, like a filter,
+the definitive transform should also be applied, and only
+then the action from the menu.
+
+Thus, we have two problems:
+
+* Transforms should always be done from the original image, but undoing
+the transform command should unto to the previous state.
+
+* Pending transforms should be committed before a menu action is taken.
+
+These problems can be solved in one go, without any of the complications
+I created yesterday by always committing the transform to the undo history
+in the transform() method, but by performing the transform from the original
+paint device, as it was when the tool got activated.
+
+Menu actions should reset the tool: for this we will need my complicated hack,
+I propose resetting the transform tool after a command is added.
+